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 6a11f9a commit a600f38Copy full SHA for a600f38
.github/workflows/Tests.yml
@@ -201,10 +201,10 @@ jobs:
201
id: clean
202
run: make -j1 -f Makefile clean || true ;
203
- name: Generate Coverage for py3.9 on ${{ matrix.os }}
204
- if: ${{ runner.python-version == "3.9" }}
+ if: ${{ runner.python-version == '3.9' }}
205
run: make -f Makefile test ;
206
- name: Generate Coverage for py${{ matrix.python-version }} on ${{ matrix.os }}
207
- if: ${{ runner.python-version != "3.9" }}
+ if: ${{ runner.python-version != '3.9' }}
208
run: make -f Makefile test-pytest ;
209
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
210
uses: codecov/codecov-action@v5
0 commit comments