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 2c00318 commit c524869Copy full SHA for c524869
.github/workflows/test.yml
@@ -38,8 +38,20 @@ jobs:
38
- name: Run rustfmt --check
39
run: cargo fmt -- --check
40
41
+ msrv:
42
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+ - name: Install cargo-hack
46
+ uses: taiki-e/install-action@cargo-hack
47
+ - uses: Swatinem/rust-cache@v2
48
+ - name: Use predefined lockfile
49
+ run: mv -v Cargo.lock.MSRV Cargo.lock
50
+ - name: Build (lib only)
51
+ run: cargo hack check --rust-version --locked
52
+
53
test:
- needs: [clippy, fmt]
54
+ needs: [clippy, fmt, msrv]
55
runs-on: ${{ matrix.os }}
56
strategy:
57
matrix:
0 commit comments