Implement publishing JUnit test reports

This commit is contained in:
Kirill Kamakin
2021-11-27 14:45:18 +03:00
parent c34bdbcd00
commit 7cac9ea07b

View File

@@ -20,3 +20,9 @@ jobs:
- name: Run tests - name: Run tests
run: ./gradlew check --no-daemon run: ./gradlew check --no-daemon
- name: Publish test reports
uses: mikepenz/action-junit-report@v2
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'