Skip to content

Commit bbdd525

Browse files
committed
Minor change
1 parent 745bc30 commit bbdd525

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/github-actions.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,14 @@ jobs:
152152
- name: Run Coverage Tests
153153
run: ./test.sh coverage
154154
shell: bash
155+
- name: Rename Coverage Data Files
156+
run: mv .coverage .coverage.${{ matrix.os }}.${{ matrix.python-version }}
157+
shell: bash
155158
- name: Upload Coverage Data to Github
156159
uses: actions/upload-artifact@v4
157160
with:
158161
name: coverage-data-${{ matrix.os }}-${{ matrix.python-version }}
159-
path: .coverage.*
162+
path: .coverage.${{ matrix.os }}.${{ matrix.python-version }}
160163
include-hidden-files: true
161164
if-no-files-found: ignore
162165
- name: Generate Coverage Report

0 commit comments

Comments
 (0)