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 e2074c6 commit 03fceb3Copy full SHA for 03fceb3
.github/workflows/ci.yml
@@ -32,10 +32,12 @@ jobs:
32
run: sudo apt install --yes --no-install-recommends libasound2-dev pkg-config
33
if: contains(matrix.os, 'ubuntu')
34
35
- - name: install ${{ matrix.toolchain }} toolchain
+ - name: Install ${{ matrix.toolchain }} toolchain
36
run: rustup toolchain install ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
37
38
- - run: cargo clippy --all-features -- -D warnings
+ - run: |
39
+ rustup component add clippy
40
+ cargo clippy --all-features -- -D warnings
41
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'
42
43
- run: |
0 commit comments