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 b356d61 commit 4338ee5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@ jobs:
- run: cargo fmt --all -- --check
- run: cargo clippy -- -D warnings

msrv:
name: MSRV
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
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 4338ee5

Please sign in to comment.