Skip to content

Commit 1e4a0fc

Browse files

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,10 @@ jobs:
2525
run: ./gradlew build
2626
env:
2727
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28+
- name: Publish Test Report
29+
uses: mikepenz/action-junit-report@v3
30+
if: success() || failure() # always run even if the previous step fails
31+
with:
32+
report_paths: "**/build/test-results/test/TEST-*.xml"
33+
require_passed_tests: true
34+
fail_on_failure: true

0 commit comments

Comments
 (0)