Skip to content

Commit 206c9c6

Browse files
committed
Fix: Let clippy also run on stable toolchain
We check this in the cron job, so we should also check this in the MSRV workflow. Signed-off-by: Matthias Beyer <[email protected]>
1 parent 460f770 commit 206c9c6

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/msrv.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,19 @@ jobs:
9292
needs: [check]
9393
name: Clippy
9494
runs-on: ubuntu-latest
95+
strategy:
96+
matrix:
97+
rust:
98+
- 1.60.0
99+
- stable
95100
steps:
96101
- name: Checkout sources
97102
uses: actions/[email protected]
98103

99104
- name: Install toolchain
100-
uses: dtolnay/rust-toolchain@1.60.0
105+
uses: dtolnay/rust-toolchain@master
101106
with:
107+
toolchain: ${{ matrix.rust }}
102108
components: clippy
103109

104110
- name: Run cargo clippy

0 commit comments

Comments
 (0)