Skip to content

Commit

Permalink
add verify-msrv workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacholt100 committed Oct 25, 2023
1 parent 680cfaa commit 6fc346b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/cargo-msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Verify MSRV

on:
push:
branches: "**"
pull_request:
branches: "**"

env:
CARGO_TERM_COLOR: always

jobs:
cargo-msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: rustup update nightly
- name: Set nightly as default
run: rustup default nightly
- name: Install cargo-msrv
uses: taiki-e/install-action@cargo-msrv
- name: verify MSRV
run: cargo msrv verify

0 comments on commit 6fc346b

Please sign in to comment.