Skip to content

Commit 20d18c4

Browse files
committed
ci(msrv): add lockfile check for MSRV for all publishable crates
only statrs for now, but wouldn't want to forget it if we add another later
1 parent 820e71f commit 20d18c4

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/msrv.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Verify msrv
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
env:
10+
CARGO_INCREMENTAL: 0
11+
RUSTFLAGS: "-Dwarnings"
12+
13+
jobs:
14+
msrv:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- uses: taiki-e/install-action@cargo-hack
19+
- run: mv Cargo.lock.msrv Cargo.lock && cargo hack check --rust-version --workspace --lib --ignore-private

0 commit comments

Comments
 (0)