Skip to content

Commit

Permalink
Add MSRV check to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed Nov 15, 2024
1 parent 13140f7 commit 40497ea
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,19 @@ jobs:
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings

msrv:
name: MSRV check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.70.0
components: "clippy"
- run: cargo fetch
- name: cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings

test:
name: Test
strategy:
Expand Down

0 comments on commit 40497ea

Please sign in to comment.