Skip to content

Commit

Permalink
Display test results after each build
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbolic committed Apr 3, 2023
1 parent 5d7497c commit aabacdd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
run: |
echo "Build Branch => Branch [$GITHUB_REF_NAME]"
./gradlew build
- name: Publish test report
uses: mikepenz/action-junit-report@v3
if: success() || failure() # always run even if the previous step fails
with:
check_name: Test results (${{ matrix.java }})
report_paths: memcached-spring-boot-autoconfigure/build/test-results/**/TEST-*.xml
- name: Run code analysis
if: ${{ matrix.sonar && github.event_name != 'pull_request'}}
run: |
Expand Down

0 comments on commit aabacdd

Please sign in to comment.