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