We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206ecc7 commit 54da8bcCopy full SHA for 54da8bc
.github/workflows/build.yml
@@ -46,6 +46,12 @@ jobs:
46
run: |
47
echo "Build Branch => Branch [$GITHUB_REF_NAME]"
48
./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
55
- name: Run code analysis
56
if: ${{ matrix.sonar && github.event_name != 'pull_request'}}
57
0 commit comments