Skip to content

Commit 7f9c845

Browse files
Save coverage-report in a zip archive
1 parent 5f9b71c commit 7f9c845

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/fedora_41.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,12 @@ jobs:
9090
git submodule update --init --recursive
9191
source /home/wxpy/venvs/Py314/bin/activate
9292
invoke test-ci
93+
zip -r coverage_report.zip .coverage-reports/htmlcov
9394
- name: Upload Coverage Report
9495
- uses: actions/upload-artifact@v4
9596
with:
96-
path: .coverage-reports/htmlcov
97-
include-hidden-files: true
97+
name: coverage-report
98+
path: coverage_report.zip
9899
- name: Install and run
99100
run: |
100101
git submodule update --init --recursive

.github/workflows/linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,12 @@ jobs:
125125
export DISPLAY=:0
126126
git submodule update --init --recursive
127127
invoke test-ci
128+
zip -r coverage_report.zip .coverage-reports/htmlcov
128129
- name: Upload Coverage Report
129130
- uses: actions/upload-artifact@v4
130131
with:
131-
path: .coverage-reports/htmlcov
132-
include-hidden-files: true
132+
name: coverage-report
133+
path: coverage_report.zip
133134
- name: Install and run
134135
run: |
135136
git submodule update --init --recursive

0 commit comments

Comments
 (0)