Skip to content

Commit a5dfc7e

Browse files
committed
Check stated MSRV in CI
1 parent da62b03 commit a5dfc7e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/rust.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,14 @@ jobs:
2525
run: cargo test --verbose --all-features --all
2626
- name: Build Examples
2727
run: cargo build --examples --all-features --all
28+
msrv:
29+
name: Minimum Supported Rust Version
30+
runs-on: ubuntu-latest
31+
steps:
32+
- uses: actions/checkout@v3
33+
- run: rustup toolchain add 1.63
34+
- name: Build
35+
run: cargo +1.63 check --lib --all-features
2836
clippy:
2937
name: Clippy
3038
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)