Skip to content

Commit 5e2ff30

Browse files
committed
Fix syntax
1 parent e14fdd3 commit 5e2ff30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
- uses: actions/checkout@v2
3535
- name: Set up Python
3636
uses: actions/setup-python@v2
37-
if: "!equals(matrix.python-version, '3.12')"
37+
if: "matrix.python-version != '3.12'"
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- uses: deadsnakes/[email protected]
41-
if: "equals(matrix.python-version, '3.12')"
41+
if: "matrix.python-version == '3.12'"
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444
- name: Pip cache

0 commit comments

Comments
 (0)