Skip to content

Commit

Permalink
ci: Add MSRV check
Browse files Browse the repository at this point in the history
  • Loading branch information
cdown committed Nov 14, 2024
1 parent 5579caf commit 346f4e7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,16 @@ jobs:
- run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings

msrv:
name: MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: swatinem/rust-cache@v2
- run: cargo install cargo-msrv
- run: cargo msrv verify

on:
push:
pull_request:
Expand Down

0 comments on commit 346f4e7

Please sign in to comment.