We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1fa816 commit 751d7aeCopy full SHA for 751d7ae
.github/workflows/publish-test-reports.yml
@@ -15,9 +15,11 @@ jobs:
15
JABBA_JDK: [ 1.8, 1.11 ]
16
steps:
17
- uses: dorny/test-reporter@v1
18
+ # avoid excessive notification spam, fail-on-error seems broken https://github.com/dorny/test-reporter/issues/161
19
+ continue-on-error: true
20
with:
21
artifact: test-results-${{ matrix.JABBA_JDK }}-${{ matrix.SCALA_VERSION }}
22
name: Test Results Details / Scala ${{ matrix.SCALA_VERSION }} on JDK ${{ matrix.JABBA_JDK }}
- fail-on-error: 'false'
23
+ fail-on-error: false
24
path: '**/target/test-reports/*.xml'
25
reporter: java-junit
0 commit comments