aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2023-09-19 23:42:39 -0700
committerJack O'Connor <[email protected]>2023-09-19 23:43:47 -0700
commitd7e9365be1751cceb83df2e4cb0086ac8f869357 (patch)
tree6aa290bb7c24ed7b6e07927e76f7154883160d4f /.github
parent5e3eb949a78f767a5a458022afedeb3e66398659 (diff)
add a test for the new serde feature
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 16a5468..2de4fdd 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -52,17 +52,17 @@ jobs:
- name: print instruction set support
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,zeroize
+ # Default tests plus Rayon and trait implementations.
+ - run: cargo test --features=rayon,traits-preview,serde,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,zeroize
+ run: cargo test --features=rayon,traits-preview,serde,zeroize
env:
RAYON_NUM_THREADS: 1
# The mmap feature by itself (update_mmap_rayon is omitted).
- run: cargo test --features=mmap
# All public features put together.
- - run: cargo test --features=mmap,rayon,traits-preview,zeroize
+ - run: cargo test --features=mmap,rayon,traits-preview,serde,zeroize
# no_std tests.
- run: cargo test --no-default-features