diff --git a/.github/workflows/test-report.yml b/.github/workflows/test-report.yml new file mode 100644 index 0000000..84635b7 --- /dev/null +++ b/.github/workflows/test-report.yml @@ -0,0 +1,17 @@ +name: 'Test Report' +on: + workflow_run: + workflows: ['build'] # runs after CI workflow + types: + - completed +jobs: + report: + runs-on: ubuntu-latest + steps: + - uses: phoenix-actions/test-reporting@v8 + id: test-report # Set ID reference for step + with: + artifact: test-results # artifact name + name: Unit Tests # Name of the check run which will be created + path: build/test-results/test/TEST-*.xml # Path to test results + reporter: java-junit # Format of test results