Skip to content

Commit

Permalink
ci: use --all-targets when calling clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
demosdemon committed Jul 16, 2024
1 parent 14957c5 commit 28d7b4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ jobs:
shared-key: ${{ matrix.os }}-${{ matrix.rust }}

- name: Run Clippy (no default features)
run: cargo clippy --workspace --tests --no-default-features
run: cargo clippy --workspace --all-targets --no-default-features

- name: Run Clippy (default features)
run: cargo clippy --workspace --tests
run: cargo clippy --workspace --all-targets

- name: Run Clippy (all features)
run: cargo clippy --workspace --tests --all-features
run: cargo clippy --workspace --all-targets --all-features

- name: Run Tests (no default features)
run: cargo test --workspace --no-default-features
Expand Down

0 comments on commit 28d7b4b

Please sign in to comment.