From c3ab04e3563d45843355e66ec8d064aac772c3a3 Mon Sep 17 00:00:00 2001 From: Oleg Golberg Date: Wed, 6 Sep 2023 22:31:58 -0400 Subject: [PATCH] Add test reports to Github actions --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8ae317..1ab75b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,3 +21,10 @@ jobs: java-version: 17 - name: Build run: ./gradlew check testCodeCoverageReport --stacktrace --no-daemon + - name: Test Report + uses: phoenix-actions/test-reporting@v8 + if: success() || failure() + with: + name: JUnit + path: "**/build/test-results/**/TEST-*.xml" + reporter: java-junit