Skip to content

Commit 4cdc900

Browse files
[REGRESSION] fix syntax by reverting - back to a working CI (- WIP #74 -)
1 parent 590cbdf commit 4cdc900

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
@@ -294,10 +294,10 @@ jobs:
294294
id: clean
295295
run: make -j1 -f Makefile clean || true ;
296296
- name: Generate Coverage for py3.9 on ${{ matrix.os }}
297-
if: runner.python-version == "3.9"
297+
if: ${{ runner.python-version }} == "3.9"
298298
run: make -f Makefile test ;
299299
- name: Generate Coverage for py${{ matrix.python-version }} on ${{ matrix.os }}
300-
if: runner.python-version != "3.9"
300+
if: ${{ runner.python-version }} != "3.9"
301301
run: make -f Makefile test-pytest ;
302302
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
303303
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)