Skip to content

Commit 259e5a0

Browse files
committed
ci: fix publish unit tests package
1 parent 422d9ab commit 259e5a0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/unit-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ jobs:
2828
name: java-query-builder-jar
2929
path: target/*.jar
3030
- name: Publish JUnit test results
31-
uses: actions/upload-test-results@v2
31+
uses: EnricoMi/publish-unit-test-result-action@v2
32+
if: (!cancelled())
3233
with:
3334
files: target/surefire-reports/*.xml
3435

@@ -48,6 +49,7 @@ jobs:
4849
- name: Run feature tests
4950
run: mvn --batch-mode -Dtest='feature.**.*Test' test
5051
- name: Publish Feature Test Results
51-
uses: actions/upload-test-results@v2
52+
uses: EnricoMi/publish-unit-test-result-action@v2
53+
if: (!cancelled())
5254
with:
5355
files: target/surefire-reports/*.xml

0 commit comments

Comments
 (0)