Publish results of JUnit tests to GHA

This commit is contained in:
William Brawner 2023-09-30 21:45:22 -06:00
parent 8b7d83c6ae
commit 9f6444524f

View file

@ -34,6 +34,14 @@ jobs:
uses: gradle/gradle-build-action@v2 uses: gradle/gradle-build-action@v2
with: with:
arguments: testPlayDebugUnitTest arguments: testPlayDebugUnitTest
- name: Publish JUnit Results
uses: dorny/test-reporter@v1
if: always()
with:
name: Unit Test Results
path: "*/build/test-results/test/*.xml"
reporter: java-junit
fail-on-error: true
ui_tests: ui_tests:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: Run UI Tests name: Run UI Tests