Skip to content

Commit 5dd55f8

Browse files
author
I750911
committed
run with new test
1 parent 9a49610 commit 5dd55f8

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/continuous-integration.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ 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+
73+
- name: "Upload Coverage Report"
74+
uses: actions/upload-artifact@v3
75+
with:
76+
name: coverage-report
77+
path: core/target/site/jacoco
7278

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

orchestration/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
</developers>
3232
<properties>
3333
<project.rootdir>${project.basedir}/../</project.rootdir>
34-
<coverage.complexity>76%</coverage.complexity>
35-
<coverage.line>92%</coverage.line>
36-
<coverage.instruction>92%</coverage.instruction>
37-
<coverage.branch>70%</coverage.branch>
38-
<coverage.method>88%</coverage.method>
34+
<coverage.complexity>100%</coverage.complexity>
35+
<coverage.line>100%</coverage.line>
36+
<coverage.instruction>100%</coverage.instruction>
37+
<coverage.branch>100%</coverage.branch>
38+
<coverage.method>100%</coverage.method>
3939
<coverage.class>100%</coverage.class>
4040
</properties>
4141

0 commit comments

Comments
 (0)