Skip to content

Commit

Permalink
Fix CI #2
Browse files Browse the repository at this point in the history
  • Loading branch information
gferon authored Oct 17, 2024
1 parent 12698f4 commit 9baf4c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Run tests
uses: actions-rs/cargo@v1
if: ${{ matrix.toolchain != "nightly" }}
if: matrix.toolchain != 'nightly'
with:
command: test
args: --all-targets --no-fail-fast
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Run tests with code coverage
uses: actions-rs/cargo@v1
if: ${{ matrix.toolchain == "nightly" }}
if: matrix.toolchain == 'nightly'
with:
command: test
args: --all-targets --no-fail-fast
Expand Down

0 comments on commit 9baf4c2

Please sign in to comment.