From 2e60f13c35f7cb3efb9274815cecfddfc2942759 Mon Sep 17 00:00:00 2001 From: Reperak Date: Sun, 7 Nov 2021 21:10:46 -0600 Subject: [PATCH] Setup GitHub Actions CI workflow --- .github/workflows/gradle-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/gradle-ci.yml diff --git a/.github/workflows/gradle-ci.yml b/.github/workflows/gradle-ci.yml new file mode 100644 index 0000000..ff03c9b --- /dev/null +++ b/.github/workflows/gradle-ci.yml @@ -0,0 +1,22 @@ +name: Gradle CI + +on: [push, pull_request] + +jobs: + build: + name: Build + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Initialize JDK 16 + uses: actions/setup-java@v2 + with: + java-version: '16' + distribution: 'adopt' + + - name: Build with Gradle + uses: burrunan/gradle-cache-action@v1 + with: + arguments: build --stacktrace