Skip to content

Commit

Permalink
chore: don't run Clippy on all targets
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Oct 18, 2023
1 parent c44ba48 commit 15ec0ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ jobs:
- uses: actions/checkout@v4
- run: rustup component add clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets --no-default-features --features blst,multicore -- -D warnings
run: cargo clippy --workspace --no-default-features --features blst,multicore -- -D warnings

clippy_check_pairing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup component add clippy
- name: Run Clippy
run: cargo clippy --workspace --all-targets -- -D warnings
run: cargo clippy --workspace -- -D warnings

check_fmt_and_docs:
name: Checking fmt and docs
Expand Down

0 comments on commit 15ec0ca

Please sign in to comment.