Skip to content

Commit f43a0f5

Browse files
authored
chore: Replace cargo-msrv with cargo check + specific version (#549)
cargo-msrv verify gave passing return codes with invalid commands. I could not replicate this locally, so this PR changes the CI to do something that "just works".
1 parent 28c5972 commit f43a0f5

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,12 @@ jobs:
8383
strategy:
8484
matrix:
8585
rust:
86-
- stable
86+
- 1.71.0
8787
steps:
8888
- uses: actions/checkout@v4
8989
- uses: dtolnay/rust-toolchain@v1
9090
with:
9191
toolchain: ${{ matrix.rust }}
92-
- name: Install cargo-msrv
93-
uses: baptiste0928/cargo-install@v2
94-
with:
95-
crate: cargo-msrv
9692
- uses: taiki-e/install-action@cargo-hack
97-
- name: verify msrv
98-
run: cargo msrv verify -- cargo hack --feature-powerset
93+
- name: cargo check msrv
94+
run: cargo hack check --feature-powerset

0 commit comments

Comments
 (0)