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 807d348 commit d20dbedCopy full SHA for d20dbed
.github/workflows/test.yaml
@@ -35,6 +35,7 @@ jobs:
35
tox -r -e $(echo "${{ matrix.python }}" | tr -d .)
36
37
- name: Upload coverage
38
+ if: ${{ matrix.python != 'python3.3' && matrix.python != 'python3.4' }}
39
uses: actions/upload-artifact@v4
40
with:
41
name: coverage-${{ matrix.python }}
@@ -192,7 +193,7 @@ jobs:
192
193
- name: Combine coverage
194
run: |
195
coverage combine
- coverage report --format=markdown >> $GITHUB_STEP_SUMMARY
196
+ coverage report --format=markdown >> "$GITHUB_STEP_SUMMARY"
197
coverage html
198
199
- name: Upload HTML report
0 commit comments