Skip to content

Commit 54da8bc

Browse files
committed
Display test results after each build
1 parent 206ecc7 commit 54da8bc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ jobs:
4646
run: |
4747
echo "Build Branch => Branch [$GITHUB_REF_NAME]"
4848
./gradlew build
49+
- name: Publish test report
50+
uses: mikepenz/action-junit-report@v3
51+
if: success() || failure() # always run even if the previous step fails
52+
with:
53+
check_name: Test results (${{ matrix.java }})
54+
report_paths: memcached-spring-boot-autoconfigure/build/test-results/**/TEST-*.xml
4955
- name: Run code analysis
5056
if: ${{ matrix.sonar && github.event_name != 'pull_request'}}
5157
run: |

0 commit comments

Comments
 (0)