From aabacdd3c6d6b38d867002861f36603255ddbc5c Mon Sep 17 00:00:00 2001 From: Igor Bolic Date: Mon, 27 Mar 2023 11:06:58 +0200 Subject: [PATCH] Display test results after each build --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c0057b..df39e94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,6 +49,12 @@ jobs: run: | echo "Build Branch => Branch [$GITHUB_REF_NAME]" ./gradlew build + - name: Publish test report + uses: mikepenz/action-junit-report@v3 + if: success() || failure() # always run even if the previous step fails + with: + check_name: Test results (${{ matrix.java }}) + report_paths: memcached-spring-boot-autoconfigure/build/test-results/**/TEST-*.xml - name: Run code analysis if: ${{ matrix.sonar && github.event_name != 'pull_request'}} run: |