Skip to content

Commit

Permalink
Enable empty featureset test
Browse files Browse the repository at this point in the history
  • Loading branch information
rubdos committed Jul 23, 2024
1 parent 0773609 commit 306ccfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ 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 }}
args: --all-targets --no-fail-fast --no-default-features --features "${{ matrix.features }}"

- name: Run doc tests
uses: actions-rs/cargo@v1
Expand Down

0 comments on commit 306ccfa

Please sign in to comment.