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