Skip to content

Commit d2d6334

Browse files
k-nasaStjepan Glavina
authored and
Stjepan Glavina
committed
Stable and beta add to CI (#482)
* Add stable and beta * Add benches
1 parent fb19ebd commit d2d6334

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macOS-latest]
20-
rust: [nightly]
20+
rust: [nightly, beta, stable]
2121

2222
steps:
2323
- uses: actions/checkout@master
@@ -38,7 +38,13 @@ jobs:
3838
uses: actions-rs/cargo@v1
3939
with:
4040
command: check
41-
args: --features unstable --all --benches --bins --examples --tests
41+
args: --features unstable --all --bins --examples --tests
42+
- name: check bench
43+
uses: actions-rs/cargo@v1
44+
if: matrix.rust == 'nightly'
45+
with:
46+
command: check
47+
args: --benches
4248

4349
- name: check std only
4450
uses: actions-rs/cargo@v1

0 commit comments

Comments
 (0)