diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65b01ca..2dcbd3f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,3 +25,10 @@ jobs: run: ./gradlew build env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Publish Test Report + uses: mikepenz/action-junit-report@v3 + if: success() || failure() # always run even if the previous step fails + with: + report_paths: "**/build/test-results/test/TEST-*.xml" + require_passed_tests: true + fail_on_failure: true