From ec3ee197ef5fa01d32ddf13df1461c98c9a260ab Mon Sep 17 00:00:00 2001 From: DanGould Date: Sat, 10 Aug 2024 12:03:11 -0400 Subject: [PATCH] Run cargo test with just secp enabled --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c79bf13..9116b58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,12 @@ jobs: toolchain: ${{ matrix.toolchain }} override: true + - name: Run cargo test with just secp enabled + env: + CARGO_INCREMENTAL: 0 + RUSTFLAGS: -D warnings -A dead_code -A unused_imports + run: cargo test --no-default-features --features="secp" + - name: Run cargo test with just X25519 enabled env: CARGO_INCREMENTAL: 0