Update versions.properties #144
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: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
# required by release-tag.sh to correctly identify files changed in the last commit | |
fetch-depth: 2 | |
# required by release-tag.sh to allow pushing with another credentials so other workflows are triggered | |
persist-credentials: false | |
- uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 21 | |
cache: gradle | |
- uses: gradle/actions/[email protected] | |
- name: Build | |
timeout-minutes: 15 | |
run: ./gradlew check | |
- name: Publish Test Report | |
uses: mikepenz/[email protected] | |
if: always() | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |