We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7759a32 commit 30e72f7Copy full SHA for 30e72f7
1 file changed
.github/workflows/test.yml
@@ -15,6 +15,10 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v4
18
+ - name: Install latest tested rust version
19
+ uses: dtolnay/rust-toolchain@1.93
20
+ with:
21
+ components: rustfmt, clippy
22
- name: Run cargo check
23
run: cargo check --benches --tests --examples --all-features
24
- name: Run cargo clippy
@@ -40,9 +44,8 @@ jobs:
40
44
41
45
- uses: actions/checkout@v3
42
46
- name: Install MSRV
43
- uses: dtolnay/rust-toolchain@master
47
+ uses: dtolnay/rust-toolchain@1.89
48
with:
- toolchain: "1.89"
49
components: rustfmt, clippy
50
- name: Check MSRV compatibility
51
run: cargo check --all-features
0 commit comments