Skip to content

Commit 1cee634

Browse files
authored
Merge pull request #147 from lerna-stack/improve-ci-failure-detection
Improve CI failure detection
2 parents 4cbcf15 + de7f649 commit 1cee634

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,14 @@ jobs:
5252
run: sbt --batch mimaReportBinaryIssues
5353

5454
- name: Run tests
55-
continue-on-error: true # results are reported by action-junit-report
5655
run: sbt coverage test
5756

5857
- name: Run integration tests
59-
continue-on-error: true # results are reported by action-junit-report
6058
run: sh ./scripts/run-multijvm-test.sh 1
6159

6260
- name: Publish test report
6361
uses: mikepenz/action-junit-report@v2
62+
if: ${{ always() }}
6463
with:
6564
check_name: ScalaTest Report (Java ${{ matrix.java }})
6665
report_paths: 'target/**test-reports/TEST-*.xml'

0 commit comments

Comments
 (0)