Skip to content

Commit 765335d

Browse files
committed
ci: install gcovr
1 parent 33c41ec commit 765335d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,18 @@ jobs:
122122

123123
steps:
124124
- uses: actions/checkout@v2
125+
- uses: actions/setup-python@v2
126+
with:
127+
python-version: '3.x'
125128

126129
- name: install hdf5
127130
run: |
128131
sudo apt update -yq
129132
sudo apt install -yq --no-install-recommends libhdf5-dev
130133
134+
- name: install Gcovr
135+
run: pip install gcovr
136+
131137
- run: cmake --preset coverage
132138
- run: cmake --build --preset coverage
133139

@@ -137,7 +143,7 @@ jobs:
137143
- uses: actions/upload-artifact@v2
138144
with:
139145
name: coverage-report-html
140-
path: build/coverage/
146+
path: build-coverage/coverage/
141147

142148

143149
linux-build-static:

0 commit comments

Comments
 (0)