Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
figure out what happened to the artifacts??

Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
  • Loading branch information
jku committed Dec 18, 2023
1 parent 55728be commit 108c6d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/actions/upload-coverage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ runs:
shell: bash
- uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
with:
name: coverage-data-${{ steps.coverage-uuid.outputs.COVERAGE_UUID }}
path: |
.coverage.*
*.lcov
name: .coverage.${{ steps.coverage-uuid.outputs.COVERAGE_UUID }}
path: .coverage.${{ steps.coverage-uuid.outputs.COVERAGE_UUID }}
if-no-files-found: ignore
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,15 @@ jobs:

- name: download coverage data
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
with:
path: ./

- name: combine coverage data
id: combinecoverage
run: |
set +e
cp coverage-data-*/* .
ls -lRa .coverage.*
cp .coverage.*/.* .
python -m coverage combine
echo "## python coverage" >> $GITHUB_STEP_SUMMARY
python -m coverage report -m --format=markdown >> $GITHUB_STEP_SUMMARY

0 comments on commit 108c6d4

Please sign in to comment.