We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01b253a commit 253b82fCopy full SHA for 253b82f
.github/workflows/continuous-integration.yaml
@@ -69,7 +69,17 @@ jobs:
69
run: |
70
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"
71
mvn $MVN_ARGS
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
83
84
- name: "Slack Notification"
85
if: ${{ github.ref == 'refs/heads/main' && failure() }}
0 commit comments