Use the gradle/gradle-build-action GitHub Action #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build-test: | |
name: "Run Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 21 | |
check-latest: true | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Build and test | |
run: ./gradlew build --no-daemon --warning-mode all | |
- name: Merge test reports | |
run: ./gradlew merge-test-reports --no-daemon --warning-mode all | |
if: always() | |
# Per the advice from: | |
# - https://github.com/marketplace/actions/test-reporter | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results | |
path: '**/build/test-results/test*/TESTS-TestSuites.xml' |