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 33c41ec commit 765335dCopy full SHA for 765335d
.github/workflows/ci.yml
@@ -122,12 +122,18 @@ jobs:
122
123
steps:
124
- uses: actions/checkout@v2
125
+ - uses: actions/setup-python@v2
126
+ with:
127
+ python-version: '3.x'
128
129
- name: install hdf5
130
run: |
131
sudo apt update -yq
132
sudo apt install -yq --no-install-recommends libhdf5-dev
133
134
+ - name: install Gcovr
135
+ run: pip install gcovr
136
+
137
- run: cmake --preset coverage
138
- run: cmake --build --preset coverage
139
@@ -137,7 +143,7 @@ jobs:
143
- uses: actions/upload-artifact@v2
144
with:
145
name: coverage-report-html
140
- path: build/coverage/
146
+ path: build-coverage/coverage/
141
147
142
148
149
linux-build-static:
0 commit comments