From fe7446ebe8fa85ee6564e2eec8e39bb021c104c4 Mon Sep 17 00:00:00 2001 From: Will Sargent Date: Tue, 3 Dec 2024 16:46:54 -0800 Subject: [PATCH] Add a Java CI github workflow --- .github/workflows/workflow.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..7f991f5 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,24 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Java CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v4 + - name: Setup Java + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 17 + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + - name: Build with Gradle + run: ./gradlew build \ No newline at end of file