Skip to content

Commit bfadffc

Browse files
committed
CI: Fix OS check within GHA "Test" workflow
1 parent 68e1965 commit bfadffc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
bin/flake8
6060
6161
test_program=bin/test
62-
if [ ${{ matrix.os }} = "macos-latest" || ${{ matrix.os }} = "windows-latest" ]; then
62+
if [[ ${{ matrix.os }} = "macos-latest" || ${{ matrix.os }} = "windows-latest" ]]; then
6363
test_program=bin/test-quick
6464
fi
6565
bin/coverage run $test_program -vv1

0 commit comments

Comments
 (0)