add HTML report generation and include JaCoCo HTML coverage report in pipeline
Build and Analyse / build-and-analyse (push) Successful in 2m6s
Build and Analyse / build-and-analyse (push) Successful in 2m6s
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user