File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 2222 - java : 17
2323 sonar : false
2424 name : Build
25- # Skip main build (JDK versions build) once the pull request is merged into master.
26- # Once PR is merged the release-snapshot action should handle the SNAPSHOT
27- # build and release, and publish the Sonar analysis.
28- if : github.repository == 'sixhours-team/memcached-spring-boot' && github.event.pull_request.merged == false
25+ if : github.repository == 'sixhours-team/memcached-spring-boot'
2926 runs-on : ubuntu-latest
3027 steps :
3128 - uses : actions/checkout@v3
4946 run : |
5047 echo "Build Branch => Branch [$GITHUB_REF_NAME]"
5148 ./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
5255 - name : Run code analysis
5356 if : ${{ matrix.sonar && github.event_name != 'pull_request'}}
5457 run : |
You can’t perform that action at this time.
0 commit comments