Skip to content

Commit d5ebd56

Browse files
committed
ci: run clippy for stable rust
1 parent 5b4ca9c commit d5ebd56

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/lint.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jobs:
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
2222
- uses: Homebrew/actions/setup-homebrew@master
23-
- uses: dtolnay/rust-toolchain@nightly
23+
- name: Install Rust nightly
24+
uses: dtolnay/rust-toolchain@nightly
25+
- name: Install Rust stable
26+
uses: dtolnay/rust-toolchain@stable
2427
with:
2528
components: clippy
2629
- run: |
@@ -30,6 +33,8 @@ jobs:
3033
run: task audit --output group --output-group-error-only
3134
- name: Check for unused dependencies
3235
run: task unused-dependencies --output group --output-group-error-only
36+
env:
37+
RUSTUP_TOOLCHAIN: nightly
3338
- name: Lint
3439
run: task lint --output group --output-group-error-only
3540

0 commit comments

Comments
 (0)