Skip to content

Commit 253b82f

Browse files
author
I750911
committed
with report
1 parent 01b253a commit 253b82f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,17 @@ jobs:
6969
run: |
7070
MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} org.jacoco:jacoco-maven-plugin:prepare-agent surefire:test org.jacoco:jacoco-maven-plugin:report org.jacoco:jacoco-maven-plugin:check@default-check"
7171
mvn $MVN_ARGS
72-
72+
73+
- name: "Generate Coverage Report"
74+
run: |
75+
MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} org.jacoco:jacoco-maven-plugin:report"
76+
mvn $MVN_ARGS
77+
78+
- name: "Upload Coverage Report"
79+
uses: actions/upload-artifact@v3
80+
with:
81+
name: coverage-report
82+
path: target/site/jacoco
7383

7484
- name: "Slack Notification"
7585
if: ${{ github.ref == 'refs/heads/main' && failure() }}

0 commit comments

Comments
 (0)