Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sbillig committed Jun 30, 2024
1 parent e42e305 commit 98f1bba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- run: cargo doc --no-deps

fmt:
Expand All @@ -30,6 +31,7 @@ jobs:
with:
toolchain: nightly
components: rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo fmt --all -- --check

clippy:
Expand All @@ -41,6 +43,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --workspace --all-features --all-targets -- -D clippy::all

unused_deps:
Expand All @@ -49,11 +52,9 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly

- name: Install cargo-udeps
uses: baptiste0928/cargo-install@v3
with:
Expand Down Expand Up @@ -83,6 +84,8 @@ jobs:
with:
toolchain: ${{ matrix.rust }}

- uses: Swatinem/rust-cache@v2

- name: Test
run: cargo test --workspace --all-targets --no-fail-fast

Expand Down

0 comments on commit 98f1bba

Please sign in to comment.