From ed1faf9f966656d3b672238b5131f493a24fcfab Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sun, 5 Jun 2022 21:41:04 -0500 Subject: [PATCH] Add GitHub workflow --- .github/workflows/gradle.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..5cfe089 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -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 \ No newline at end of file