add HTML report generation and include JaCoCo HTML coverage report in pipeline
Build and Analyse / build-and-analyse (push) Successful in 2m6s

This commit is contained in:
2026-07-21 18:00:02 +02:00
parent 32a35781b5
commit 9eb59b8c70
3 changed files with 17 additions and 38 deletions
+11
View File
@@ -102,6 +102,17 @@ runs:
print(md)
EOF
- name: Copy JaCoCo HTML coverage report
shell: bash
run: |
rm -rf reports/test
if [ -d target/site/jacoco ]; then
mkdir -p reports/test
cp -r target/site/jacoco/. reports/test/
else
echo "No JaCoCo HTML report found at target/site/jacoco"
fi
- name: Commit Test-Report to Repo
shell: bash
env: