Skip to content

Commit

Permalink
test: use cargo msrv verify in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen committed Oct 9, 2023
1 parent 3f28edd commit 1912bfa
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ on:
branches: [main]
pull_request:

name: semver-checks
name: MSRV and semver checks

jobs:
semver:
name: Run cargo-semver-checks
name: Run cargo-semver-checks and msrv verify
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -23,5 +23,11 @@ jobs:
uses: baptiste0928/cargo-install@v2
with:
crate: cargo-semver-checks
- name: Install cargo-semver-checks
uses: baptiste0928/cargo-install@v2
with:
crate: cargo-msrv
- name: Verify MSRV
run: cargo msrv verify -- cargo check --all-features
- name: run check-release
run: cargo semver-checks check-release

0 comments on commit 1912bfa

Please sign in to comment.