Update GHA workflow #53
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: 'gradle' | |
- uses: gradle/wrapper-validation-action@v3 | |
- name: Build with Gradle | |
run: ./gradlew clean build | |
- name: Upload coverage report to CodeCov | |
uses: codecov/codecov-action@v4 | |
with: | |
files: build/reports/jacoco/jacocoRootReport/jacocoRootReport.xml | |
fail_ci_if_error: true | |
verbose: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload reports and test results to GitHub | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports-and-test-results | |
path: | | |
build/reports/ | |
build/test-results/ |