test MSRV in CI
This commit is contained in:
parent
eadc48879a
commit
cf7a577478
|
@ -3,6 +3,19 @@ name: CI
|
|||
on: [push]
|
||||
|
||||
jobs:
|
||||
test_msrv:
|
||||
name: test on MSRV
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3.3.0
|
||||
- uses: actions-rs/toolchain@v1.0.7
|
||||
with:
|
||||
# When toolchain is not specified, it uses rust-toolchain, which is the MSRV
|
||||
override: true
|
||||
- uses: actions-rs/cargo@v1.0.3
|
||||
with:
|
||||
command: test
|
||||
args: --all-features
|
||||
test_nightly:
|
||||
name: test on nightly
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Reference in New Issue