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 d3a7331 commit 4ac15f5Copy full SHA for 4ac15f5
.github/workflows/verify.yml
@@ -253,11 +253,15 @@ jobs:
253
venv-dir: ${{ env.VENV }}
254
precommit-home: ${{ env.PRE_COMMIT_HOME }}
255
- name: Download all coverage artifacts
256
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v5
257
+ with:
258
+ pattern: coverage-*
259
+ merge-multiple: true
260
+ path: ${{ github.workspace }}/artifacts
261
- name: Combine coverage results
262
run: |
263
. venv/bin/activate
- coverage combine coverage*/.coverage*
264
+ coverage combine artifacts/.coverage*
265
#coverage report --fail-under=80 ## plugwise is at 94, set to 80 for plugwise_usb
266
echo "***"
267
0 commit comments