Skip to content

Commit 65fcd2a

Browse files
committed
Add msrv check to the ci
1 parent 52948ce commit 65fcd2a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,18 @@ jobs:
2222

2323
- name: Check clippy
2424
run: cargo clippy --all-targets --all-features
25+
26+
msrv:
27+
name: MSRV check (1.85)
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: actions/checkout@v4
31+
32+
- name: Setup MSRV rust
33+
run: rustup toolchain install 1.85 --profile minimal
34+
35+
- name: Check build with MSRV
36+
run: cargo +1.85 check --all-targets --all-features
37+
38+
- name: Check tests compile with MSRV
39+
run: cargo +1.85 test --all-features --no-run

0 commit comments

Comments
 (0)