1.20.2 Update (#130) #131
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: Java CI with Gradle | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
check-latest: true | |
cache: 'gradle' | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Gradle Build Action | |
uses: gradle/[email protected] | |
with: | |
arguments: test build | |
gradle-version: '7.4' | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: 'Auto-Tune-Artifact' | |
path: build/libs/*.jar |