We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb19ebd commit d2d6334Copy full SHA for d2d6334
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
strategy:
18
matrix:
19
os: [ubuntu-latest, windows-latest, macOS-latest]
20
- rust: [nightly]
+ rust: [nightly, beta, stable]
21
22
steps:
23
- uses: actions/checkout@master
@@ -38,7 +38,13 @@ jobs:
38
uses: actions-rs/cargo@v1
39
with:
40
command: check
41
- args: --features unstable --all --benches --bins --examples --tests
+ 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
48
49
- name: check std only
50
0 commit comments