Skip to content

Commit

Permalink
chore: add github workflow to verify MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
rasendubi committed May 15, 2024
1 parent 3f70b24 commit eed0788
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Verify MSRV version

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable

steps:
- uses: actions/checkout@v3
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo install cargo-msrv
- run: cargo msrv verify

0 comments on commit eed0788

Please sign in to comment.