chore(deps): update gradle/wrapper-validation-action digest to 8842585 - autoclosed #137
Workflow file for this run
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: [ master ] | |
pull_request: | |
types: [ opened, synchronize ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@24d65a10ac2989505fa7f4ec673bc02478f87b68 | |
- name: Assemble the jar | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: assemble | |
- name: Run tests | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: check | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
if: always() # always run even if the previous step fails | |
with: | |
check_name: JUnit Test Report | |
report_paths: '**/build/test-results/**/TEST-*.xml' | |
- name: Publish Coverage Report | |
uses: codecov/codecov-action@v3 |