We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 352bd2d commit 6b9bb66Copy full SHA for 6b9bb66
.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 == 'stable' && 'clippy' || '' }}
39
+ - run: RUSTFLAGS="--deny warnings" cargo ${{ matrix.rust == 'stable' && 'clippy' || 'check' }} ${{ matrix.features }}
40
41
test:
42
name: test
0 commit comments