We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b4ca9c commit d5ebd56Copy full SHA for d5ebd56
1 file changed
.github/workflows/lint.yaml
@@ -20,7 +20,10 @@ jobs:
20
with:
21
repo-token: ${{ secrets.GITHUB_TOKEN }}
22
- uses: Homebrew/actions/setup-homebrew@master
23
- - uses: dtolnay/rust-toolchain@nightly
+ - name: Install Rust nightly
24
+ uses: dtolnay/rust-toolchain@nightly
25
+ - name: Install Rust stable
26
+ uses: dtolnay/rust-toolchain@stable
27
28
components: clippy
29
- run: |
@@ -30,6 +33,8 @@ jobs:
30
33
run: task audit --output group --output-group-error-only
31
34
- name: Check for unused dependencies
32
35
run: task unused-dependencies --output group --output-group-error-only
36
+ env:
37
+ RUSTUP_TOOLCHAIN: nightly
38
- name: Lint
39
run: task lint --output group --output-group-error-only
40
0 commit comments