Skip to content

Commit c2f6870

Browse files
Not using zip to get coverage-reports (#2941)
1 parent c60f755 commit c2f6870

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/fedora_41.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Configure container environment
7070
run: |
7171
sudo dnf update -y
72-
sudo dnf install -y git zip
72+
sudo dnf install -y git
7373
git config --global --add safe.directory ${GITHUB_WORKSPACE}
7474
- uses: actions/[email protected]
7575
with:
@@ -90,11 +90,10 @@ 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
9493
- uses: actions/upload-artifact@v4
9594
with:
9695
name: coverage-report
97-
path: coverage_report.zip
96+
path: .coverage-reports/htmlcov
9897
- name: Install and run
9998
run: |
10099
git submodule update --init --recursive

.github/workflows/linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,10 @@ jobs:
125125
export DISPLAY=:0
126126
git submodule update --init --recursive
127127
invoke test-ci
128-
zip -r coverage_report.zip .coverage-reports/htmlcov
129128
- uses: actions/upload-artifact@v4
130129
with:
131130
name: coverage-report
132-
path: coverage_report.zip
131+
path: .coverage-reports/htmlcov/
133132
- name: Install and run
134133
run: |
135134
git submodule update --init --recursive

0 commit comments

Comments
 (0)