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 5d7497c commit aabacddCopy full SHA for aabacdd
.github/workflows/build.yml
@@ -49,6 +49,12 @@ jobs:
49
run: |
50
echo "Build Branch => Branch [$GITHUB_REF_NAME]"
51
./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
58
- name: Run code analysis
59
if: ${{ matrix.sonar && github.event_name != 'pull_request'}}
60
0 commit comments