Verify MSRV in CI

This commit is contained in:
Dirkjan Ochtman 2023-10-25 22:42:06 +02:00
parent 4392e1cb5a
commit 26c4bb4d4c
1 changed files with 14 additions and 0 deletions

View File

@ -39,6 +39,20 @@ jobs:
command: test command: test
args: --no-default-features args: --no-default-features
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.63.0"
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --lib --all-features
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: