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 460f770 commit 206c9c6Copy full SHA for 206c9c6
.github/workflows/msrv.yml
@@ -92,13 +92,19 @@ jobs:
92
needs: [check]
93
name: Clippy
94
runs-on: ubuntu-latest
95
+ strategy:
96
+ matrix:
97
+ rust:
98
+ - 1.60.0
99
+ - stable
100
steps:
101
- name: Checkout sources
102
uses: actions/[email protected]
103
104
- name: Install toolchain
- uses: dtolnay/rust-toolchain@1.60.0
105
+ uses: dtolnay/rust-toolchain@master
106
with:
107
+ toolchain: ${{ matrix.rust }}
108
components: clippy
109
110
- name: Run cargo clippy
0 commit comments