From 8b59fa6fb97b8b629385c8c7df28bb04ba1533c1 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Thu, 3 Mar 2022 19:56:25 -0600 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