Skip to content

Commit

Permalink
Merge pull request #1 from kevinvandenbreemen/test-reporting
Browse files Browse the repository at this point in the history
Add test reporting
  • Loading branch information
kevinvandenbreemen authored Nov 2, 2023
2 parents f22fcb6 + 86a8866 commit c6ce60f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,11 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
run: ./gradlew build && ls -latrR build
- name: Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
include_passed: true
detailed_summary: true

0 comments on commit c6ce60f

Please sign in to comment.