CI: On Nightly toolchains, test the benchmarks instead of just building them.

`cargo test` will run one iteration of each benchmark to provide evidence
that they don't fail in an obvious way (e.g. unintended panics).
This commit is contained in:
Brian Smith 2022-10-22 23:08:31 -07:00
parent 2ec38ad931
commit 84883207b9

View File

@ -61,7 +61,7 @@ jobs:
- run: cargo test --features=std
- run: cargo test --features=custom # custom should do nothing here
- if: ${{ matrix.toolchain == 'nightly' }}
run: cargo build --benches
run: cargo test --benches
linux-tests:
name: Additional Linux targets