From 1a73b30bec90b2610c72dceb12cfde8b9be395d7 Mon Sep 17 00:00:00 2001 From: Tarek Date: Sun, 7 Jul 2024 11:37:27 +0300 Subject: [PATCH] fix(ci): remove blake3 feature flag from build workflow Signed-off-by: Tarek --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7659544..94591f1c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: - name: Run tests run: | cargo test --verbose - cargo test --verbose --features blake3 + cargo test --verbose - name: Build Release run: cargo build --verbose --release @@ -73,7 +73,7 @@ jobs: - name: Run tests run: | cargo test --workspace --verbose - cargo test --workspace --verbose --features blake3 + cargo test --workspace --verbose - name: Install JDK uses: actions/setup-java@v4.2.1 @@ -104,7 +104,7 @@ jobs: - name: Run tests run: | cargo test --workspace --verbose - cargo test --workspace --verbose --features blake3 + cargo test --workspace --verbose - name: Install JDK uses: actions/setup-java@v4.2.1