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 590cbdf commit 4cdc900Copy full SHA for 4cdc900
.github/workflows/Tests.yml
@@ -294,10 +294,10 @@ jobs:
294
id: clean
295
run: make -j1 -f Makefile clean || true ;
296
- name: Generate Coverage for py3.9 on ${{ matrix.os }}
297
- if: runner.python-version == "3.9"
+ if: ${{ runner.python-version }} == "3.9"
298
run: make -f Makefile test ;
299
- name: Generate Coverage for py${{ matrix.python-version }} on ${{ matrix.os }}
300
- if: runner.python-version != "3.9"
+ if: ${{ runner.python-version }} != "3.9"
301
run: make -f Makefile test-pytest ;
302
- name: Upload Python ${{ matrix.python-version }} coverage to Codecov
303
uses: codecov/codecov-action@v4
0 commit comments