Stable and beta add to CI (#482)

* Add stable and beta

* Add benches
poc-serde-support
nasa 5 years ago committed by Stjepan Glavina
parent fb19ebde17
commit d2d63348c7

@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly]
rust: [nightly, beta, stable]
steps:
- uses: actions/checkout@master
@ -38,7 +38,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: check
args: --features unstable --all --benches --bins --examples --tests
args: --features unstable --all --bins --examples --tests
- name: check bench
uses: actions-rs/cargo@v1
if: matrix.rust == 'nightly'
with:
command: check
args: --benches
- name: check std only
uses: actions-rs/cargo@v1

Loading…
Cancel
Save