From ffd264444df427142a41a437960806d884b09560 Mon Sep 17 00:00:00 2001 From: Martin Raszyk Date: Sun, 13 Oct 2024 09:52:38 +0200 Subject: [PATCH] fix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 856632c8..33d5e1f7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,7 +37,7 @@ jobs: for p in $(cargo metadata --no-deps --format-version 1 | jq -r .packages[].manifest_path); do # skip unit tests for integration tests on windows # because integration tests cannot be run on windows anyway - if [[ ! ( ${{ matrix.os == 'windows-latest' }} && "$(grep ref-tests "${p}")" ) ]]; then + if [[ ! ( ${{ matrix.os == 'windows-latest' }} && "$(echo ${p} | grep ref-tests)" ) ]]; then pushd $(dirname $p) cargo test --all-targets --all-features cargo test --all-targets --no-default-features