From d55e17ad48e92d51cd252909a3eaca0cd5b0a275 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 3 Nov 2020 13:10:38 +0100 Subject: [PATCH] CI: Attempt to satisfy Windows when invoking "bin/coverage" --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c7841fbff..3afdd10b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,6 +60,6 @@ jobs: test_program=bin/test if [[ ${{ matrix.os }} = "macos-latest" || ${{ matrix.os }} = "windows-latest" ]]; then - test_program=bin/test-quick + test_program=$(which bin/test-quick) fi bin/coverage run $test_program -vv1