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 3bb08b1 commit db49db3Copy full SHA for db49db3
.github/workflows/rust.yml
@@ -20,6 +20,10 @@ jobs:
20
cargo_args:
21
- ""
22
- --features serde
23
+ include:
24
+ - os: ubuntu-latest
25
+ rust: nightly
26
+ cargo_args: ""
27
28
runs-on: ${{ matrix.os }}
29
@@ -50,6 +54,13 @@ jobs:
50
54
command: test
51
55
args: ${{ matrix.cargo_args }}
52
56
57
+ - name: Run cargo bench
58
+ uses: actions-rs/cargo@v1
59
+ if: ${{ matrix.rust == 'nightly' }}
60
+ with:
61
+ command: bench
62
+ args: ${{ matrix.cargo_args }}
63
+
53
64
# - name: Build
65
# run: cargo build --verbose
66
# - name: Build (serde)
0 commit comments