Skip to content

Commit

Permalink
GitHub's YAML expressions really care about the difference between si…
Browse files Browse the repository at this point in the history
…ngle quote and double quote.
  • Loading branch information
jamadden committed Dec 13, 2023
1 parent 2194624 commit 33072f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
# Coverage can't run the test_interpreters.py tests because greenlet can't
# run there and that's how coverage is configured. Right now, we only have that
# on Python 3.12, so take the quick way out and nix that version too.
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.python-version, "3.12") && startsWith(runner.os, 'Linux') }}
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.python-version, '3.12') && startsWith(runner.os, 'Linux') }}
run: |
echo G_USE_COV=--coverage >> $GITHUB_ENV
Expand Down

0 comments on commit 33072f9

Please sign in to comment.