diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index e2f6c35..2410c6b 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,4 +19,10 @@ jobs: cache: 'gradle' - name: Run tests - run: ./gradlew check --no-daemon \ No newline at end of file + 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' \ No newline at end of file