add a CI job to verify msrv is still correct
This commit is contained in:
14
.github/workflows/test.yml
vendored
14
.github/workflows/test.yml
vendored
@@ -38,3 +38,17 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: test
|
command: test
|
||||||
args: --verbose --all --no-default-features --features num
|
args: --verbose --all --no-default-features --features num
|
||||||
|
msrv:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04, macos-10.15]
|
||||||
|
steps:
|
||||||
|
- name: Checkout sources
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install cargo-msrv
|
||||||
|
uses: baptiste0928/cargo-install@v1.1.0
|
||||||
|
with:
|
||||||
|
crate: cargo-msrv
|
||||||
|
- name: Verify MSRV
|
||||||
|
run: cargo msrv --verify
|
||||||
|
|||||||
Reference in New Issue
Block a user