Skip to content

Commit

Permalink
CI: Fix OS check within GHA "Test" workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 3, 2020
1 parent 68e1965 commit bfadffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
bin/flake8
test_program=bin/test
if [ ${{ matrix.os }} = "macos-latest" || ${{ matrix.os }} = "windows-latest" ]; then
if [[ ${{ matrix.os }} = "macos-latest" || ${{ matrix.os }} = "windows-latest" ]]; then
test_program=bin/test-quick
fi
bin/coverage run $test_program -vv1

0 comments on commit bfadffc

Please sign in to comment.