From ccc0ce9873c5f8e25f9ad6525b6a149a994fe184 Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Tue, 13 Jun 2023 22:02:06 +0300 Subject: [PATCH] Add Zeroize and benches to the CI matrix --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ccbf423..f1aca05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,16 +18,17 @@ jobs: matrix: include: - rust: 1.51.0 # MSRV - features: serde + features: serde, zeroize experimental: false - rust: stable features: + bench: true experimental: false - rust: beta features: serde experimental: false - rust: nightly - features: serde + features: serde, zeroize] experimental: false steps: @@ -57,4 +58,4 @@ jobs: rustup override set nightly cargo miri setup - name: Test with Miri - run: cargo miri test + run: cargo miri test --all-features