Migrate away from deprecated finalize() method in favour of a single Cleaner
. Require Java 9
#52
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 project | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
- trunk | |
- develop | |
- maine | |
- mane | |
schedule: | |
- cron: '0 3 * * 1,4' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Write Gradle build properties to `~/.gradle/gradle.properties` | |
run: | | |
mkdir -p ~/.gradle | |
printf "org.gradle.jvmargs=-Xmx3G -XX:+UseParallelGC\n" >> ~/.gradle/gradle.properties | |
printf "org.gradle.vfs.watch=false\n" >> ~/.gradle/gradle.properties | |
shell: bash | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: | | |
8 | |
11 | |
17 | |
20 | |
- uses: gradle/gradle-build-action@v2 | |
- uses: gradle/wrapper-validation-action@v1 | |
- run: ./gradlew projectCodestyle --scan | |
- run: ./gradlew assemble check --scan | |
- run: ./gradlew projectCoverage --scan | |
- run: ./gradlew publishToMavenLocal | |
- run: git diff --exit-code | |
- uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: test-results-${{ matrix.os }} | |
path: "${{ github.workspace }}/**/build/reports" |