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.
2 parents e515948 + 799ed85 commit a904566Copy full SHA for a904566
.github/workflows/ci.yml
@@ -36,12 +36,7 @@ jobs:
36
37
- name: install ${{ matrix.toolchain }} toolchain
38
id: install_toolchain
39
- uses: actions-rs/toolchain@v1
40
- with:
41
- toolchain: ${{ matrix.toolchain }}
42
- profile: minimal
43
- # Don't use a 'components:' entry--we don't need them with beta/nightly, plus nightly often doesn't have them
44
- override: true
+ run: rustup toolchain install ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
45
46
- run: cargo clippy -- -D warnings
47
if: matrix.toolchain == 'stable' && matrix.os == 'ubuntu-latest'
0 commit comments