From 7b24e78487dabada344d23af16a8cc9da573fe96 Mon Sep 17 00:00:00 2001 From: Tomas Date: Wed, 25 Sep 2024 18:20:22 -0300 Subject: [PATCH] upload coverage html report in CI (#134) --- .github/workflows/integration.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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