Skip to content

Commit

Permalink
Check stated MSRV in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Nov 5, 2024
1 parent da62b03 commit a5dfc7e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
run: cargo test --verbose --all-features --all
- name: Build Examples
run: cargo build --examples --all-features --all
msrv:
name: Minimum Supported Rust Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: rustup toolchain add 1.63
- name: Build
run: cargo +1.63 check --lib --all-features
clippy:
name: Clippy
runs-on: ubuntu-latest
Expand Down

0 comments on commit a5dfc7e

Please sign in to comment.