We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352bd2d commit 100c90bCopy full SHA for 100c90b
.github/workflows/ci.yml
@@ -35,7 +35,8 @@ jobs:
35
- uses: dtolnay/rust-toolchain@master
36
with:
37
toolchain: ${{ matrix.rust }}
38
- - run: RUSTFLAGS="--deny warnings" cargo check ${{ matrix.features }}
+ components: ${{ matrix.rust == 'msrv' && 'clippy' || '' }}
39
+ - run: RUSTFLAGS="--deny warnings" cargo ${{ matrix.rust == 'msrv' && 'clippy' || 'check' }} ${{ matrix.features }}
40
41
test:
42
name: test
0 commit comments