From e613622f27f593bec27138726b63783dd3a7c758 Mon Sep 17 00:00:00 2001 From: Dean Brettle Date: Mon, 22 Apr 2024 15:37:47 -0700 Subject: [PATCH] Add Continuous Integration support. Make Github will automatically build any code pushed to it. --- .github/workflows/gradle.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..93f64dd1 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,20 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + submodules: 'recursive' + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'temurin' + java-version: 17 + - name: Build with Gradle + run: ./gradlew build