diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index a2fb1c98..373b1d1a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -87,8 +87,11 @@ jobs: - name: Run tests and generate code coverage run: make coverage + - name: Zip coverage html report + run: zip -r coverage.zip lcov.info target/llvm-cov/html + - name: Upload coverage report uses: actions/upload-artifact@v4 with: name: coverage-summary - path: lcov.info + path: coverage.zip