From d9a956049d97a638de9caefc841972cdf7d0bcec Mon Sep 17 00:00:00 2001 From: Ruben De Smet Date: Tue, 23 Jul 2024 16:05:22 +0200 Subject: [PATCH] Enable empty featureset test --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 37f5905..bc25aba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,9 +75,9 @@ jobs: command: test args: --all-targets --no-fail-fast --all-features - - name: Run tests with ${{ matrix.features }} + - name: "Run tests with features: ${{ matrix.features }}" uses: actions-rs/cargo@v1 - if: ${{ !matrix.coverage && matrix.features != '' }} + if: ${{ !matrix.coverage }} with: command: test args: --all-targets --no-fail-fast --no-default-features --features ${{ matrix.features }}