From 9baf4c2de3fead6606b767cbf8791f9d509f29e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20F=C3=A9ron?= Date: Thu, 17 Oct 2024 16:41:07 +0200 Subject: [PATCH] Fix CI #2 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e08bd5aa8..532ceb15e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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