We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d2bd4e commit 0c0bd35Copy full SHA for 0c0bd35
.github/workflows/ci.yml
@@ -19,7 +19,9 @@ jobs:
19
steps:
20
- uses: actions/checkout@v4
21
- uses: dtolnay/rust-toolchain@stable
22
- - run: RUSTFLAGS="--deny warnings" cargo check ${{ matrix.features }}
+ with:
23
+ components: ${{ matrix.rust == 'stable' && 'clippy' || '' }}
24
+ - run: RUSTFLAGS="--deny warnings" cargo ${{ matrix.rust == 'stable' && 'clippy' || 'check' }} ${{ matrix.features }}
25
26
msrv:
27
runs-on: ubuntu-latest
0 commit comments