aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorElichai Turkel <[email protected]>2023-07-09 19:34:37 +0300
committerJack O'Connor <[email protected]>2023-07-16 13:29:47 -0400
commitf18e19092b2de416f67734f59e72eaf9b36ba15b (patch)
treef8fccdff9a23be15b1eb5a3728ebbd9d08d5dc5a /.github/workflows/ci.yml
parent8e92fc6929a984508fc542b99bac302439cba0fb (diff)
Add tests for Zeroize
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c1a88aa..e0065f2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -53,10 +53,10 @@ jobs:
run: cargo run --quiet
working-directory: ./tools/instruction_set_support
# Default tests plus Rayon and RustCrypto trait implementations.
- - run: cargo test --features=rayon,traits-preview
+ - run: cargo test --features=rayon,traits-preview,zeroize
# Same but with only one thread in the Rayon pool. This can find deadlocks.
- name: "again with RAYON_NUM_THREADS=1"
- run: cargo test --features=rayon,traits-preview
+ run: cargo test --features=rayon,traits-preview,zeroize
env:
RAYON_NUM_THREADS: 1
# no_std tests.