Skip to content

Commit aabacdd

Browse files
committed
Display test results after each build
1 parent 5d7497c commit aabacdd

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
@@ -49,6 +49,12 @@ jobs:
4949
run: |
5050
echo "Build Branch => Branch [$GITHUB_REF_NAME]"
5151
./gradlew build
52+
- name: Publish test report
53+
uses: mikepenz/action-junit-report@v3
54+
if: success() || failure() # always run even if the previous step fails
55+
with:
56+
check_name: Test results (${{ matrix.java }})
57+
report_paths: memcached-spring-boot-autoconfigure/build/test-results/**/TEST-*.xml
5258
- name: Run code analysis
5359
if: ${{ matrix.sonar && github.event_name != 'pull_request'}}
5460
run: |

0 commit comments

Comments
 (0)