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 ee76cc7 commit 36f1b97Copy full SHA for 36f1b97
1 file changed
.github/workflows/build.yml
@@ -28,6 +28,13 @@ jobs:
28
run: ./gradlew build --info --init-script init.gradle
29
- name: integration tests
30
run: ./gradlew integrationtest --info --init-script init.gradle
31
+ - name: Publish Test Report
32
+ uses: mikepenz/action-junit-report@v5
33
+ if: success() || failure() # always run even if the previous step fails
34
+ with:
35
+ annotate_only: true
36
+ include_passed: true
37
+ report_paths: '**/test/TEST-*.xml'
38
build-docker-image:
39
runs-on: ubuntu-latest
40
steps:
0 commit comments