Skip to content

Commit a600f38

Browse files
[FIX] fix for regression typo in config for CI.
1 parent 6a11f9a commit a600f38

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
@@ -201,10 +201,10 @@ jobs:
201201
id: clean
202202
run: make -j1 -f Makefile clean || true ;
203203
- name: Generate Coverage for py3.9 on ${{ matrix.os }}
204-
if: ${{ runner.python-version == "3.9" }}
204+
if: ${{ runner.python-version == '3.9' }}
205205
run: make -f Makefile test ;
206206
- name: Generate Coverage for py${{ matrix.python-version }} on ${{ matrix.os }}
207-
if: ${{ runner.python-version != "3.9" }}
207+
if: ${{ runner.python-version != '3.9' }}
208208
run: make -f Makefile test-pytest ;
209209
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
210210
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)