From c7057fd66a0eecb2ce278645068a36b0c450cb7b Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Fri, 13 Sep 2024 09:40:48 +0200 Subject: [PATCH] fixup! fixup! fixup! testing --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fe7ee9b1..d532721c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,7 +82,7 @@ jobs: run: "LAZE=$(pwd)/target/debug/laze make -C src/tests" - name: "collect coverage results" - if: ${{ matrix.toolchain == 'nightly' }} + if: ${{ startsWith(matrix.toolchain, 'nightly') }} run: > RUSTUP_TOOLCHAIN=${{ matrix.toolchain }} grcov @@ -95,7 +95,7 @@ jobs: --ignore "/*" - name: Coveralls - if: ${{ matrix.toolchain == 'nightly' }} + if: ${{ startsWith(matrix.toolchain, 'nightly') }} uses: coverallsapp/github-action@v1 with: path-to-lcov: "lcov.info"