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 745bc30 commit bbdd525Copy full SHA for bbdd525
.github/workflows/github-actions.yml
@@ -152,11 +152,14 @@ jobs:
152
- name: Run Coverage Tests
153
run: ./test.sh coverage
154
shell: bash
155
+ - name: Rename Coverage Data Files
156
+ run: mv .coverage .coverage.${{ matrix.os }}.${{ matrix.python-version }}
157
+ shell: bash
158
- name: Upload Coverage Data to Github
159
uses: actions/upload-artifact@v4
160
with:
161
name: coverage-data-${{ matrix.os }}-${{ matrix.python-version }}
- path: .coverage.*
162
+ path: .coverage.${{ matrix.os }}.${{ matrix.python-version }}
163
include-hidden-files: true
164
if-no-files-found: ignore
165
- name: Generate Coverage Report
0 commit comments