Skip to content

Commit 4f1b72b

Browse files
committed
window/osx tests.
1 parent a039d34 commit 4f1b72b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,18 @@ jobs:
6161
with:
6262
check_name: "Unit Test Results ${{ matrix.os }} / ${{ matrix.java }}"
6363
files: "**/target/surefire-reports/*.xml"
64-
- name: Publish Unit Test Results
64+
- name: Publish Unit Test Results (windows)
6565
uses: EnricoMi/publish-unit-test-result-action/windows/bash@v2
6666
if: (success() || failure()) && runner.os == 'Windows'
6767
with:
6868
check_name: "Unit Test Results ${{ matrix.os }} / ${{ matrix.java }}"
6969
files: "**/target/surefire-reports/*.xml"
70+
- name: Publish Unit Test Results (macos)
71+
uses: EnricoMi/publish-unit-test-result-action/macos@v2
72+
if: (success() || failure()) && runner.os == 'MacOS'
73+
with:
74+
check_name: "Unit Test Results ${{ matrix.os }} / ${{ matrix.java }}"
75+
files: "**/target/surefire-reports/*.xml"
7076
- uses: MMProgrami/after-maven-action@v2
7177
if: true
7278

0 commit comments

Comments
 (0)