We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e14fdd3 commit 5e2ff30Copy full SHA for 5e2ff30
.github/workflows/tests.yml
@@ -34,11 +34,11 @@ jobs:
34
- uses: actions/checkout@v2
35
- name: Set up Python
36
uses: actions/setup-python@v2
37
- if: "!equals(matrix.python-version, '3.12')"
+ if: "matrix.python-version != '3.12'"
38
with:
39
python-version: ${{ matrix.python-version }}
40
- uses: deadsnakes/[email protected]
41
- if: "equals(matrix.python-version, '3.12')"
+ if: "matrix.python-version == '3.12'"
42
43
44
- name: Pip cache
0 commit comments