Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- master
permissions: # For test summary bot
checks: write
jobs:
buildAndPublish:
runs-on: ubuntu-latest
Expand All @@ -22,3 +24,8 @@ jobs:
distribution: 'corretto'
- name: build test and publish
run: ./gradlew assemble && ./gradlew check --info && ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository -x check --info --stacktrace
- name: Publish Test Results
uses: EnricoMi/[email protected]
if: always()
with:
files: '**/build/test-results/test/TEST-*.xml'
9 changes: 9 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ on:
- 21.x
- 20.x
- 19.x
permissions: # For test comment bot
checks: write
pull-requests: write
jobs:
buildAndTest:
runs-on: ubuntu-latest
Expand All @@ -24,3 +27,9 @@ jobs:
distribution: 'corretto'
- name: build and test
run: ./gradlew assemble && ./gradlew check --info --stacktrace
- name: Publish Test Results
uses: EnricoMi/[email protected]
if: always()
with:
files: '**/build/test-results/test/TEST-*.xml'