File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed
Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change 77 workflow_dispatch : # triggered by the prepare-release workflow
88
99env :
10- MVN_MULTI_THREADED_ARGS : --batch-mode --no-transfer-progress --fail-at-end --show-version --threads 1
10+ MVN_MULTI_THREADED_ARGS : --batch-mode --no-transfer-progress --fail-at-end --show-version --threads 1C
1111 MVN_SKIP_CI_PLUGINS : -DskipFormatting -Denforcer.skip -Djacoco.skip -Dmdep.analyze.skip
1212 JAVA_VERSION : 17
1313
6767
6868 - name : " Run Unit Tests"
6969 run : |
70- MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} org.jacoco:jacoco-maven-plugin:prepare-agent surefire:test org.jacoco:jacoco-maven-plugin:report"
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 "
7171 mvn $MVN_ARGS
72- - name : " Generate Coverage Report"
73- run : |
74- MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} org.jacoco:jacoco-maven-plugin:report"
75- mvn $MVN_ARGS
76- - name : " Upload Coverage Report"
77- uses : actions/upload-artifact@v4
78- with :
79- name : coverage-report
80- path : core/target/site/jacoco
8172
8273 - name : " Slack Notification"
8374 if : ${{ github.ref == 'refs/heads/main' && failure() }}
You can’t perform that action at this time.
0 commit comments