Add GitHub workflow

This commit is contained in:
Telesphoreo 2022-05-08 14:00:41 -05:00
parent 32f17a23f3
commit ceea975729
No known key found for this signature in database
GPG Key ID: 5ACFFC4682CF849B
1 changed files with 18 additions and 0 deletions

18
.github/workflows/gradle.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Gradle
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Build with Gradle
run: chmod a+x gradlew && ./gradlew build --no-daemon