From 9edbdf54c9de841db01a741c09017ccca70b76bc Mon Sep 17 00:00:00 2001 From: LLFourn Date: Tue, 21 Feb 2023 17:22:59 +1100 Subject: [PATCH] [ci] Fix feature flags --- .github/workflows/cont_integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 85ecc04a..9d0fb65a 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -40,12 +40,12 @@ jobs: - name: Update toolchain run: rustup update - name: Build - run: cargo build --features ${{ matrix.features }} + run: cargo build ${{ matrix.features }} - name: Clippy if: ${{ matrix.rust.clippy }} run: cargo clippy --all-targets --features ${{ matrix.features }} -- -D warnings - name: Test - run: cargo test --features ${{ matrix.features }} + run: cargo test ${{ matrix.features }} check-wasm: name: Check WASM