From 105b50d6d70670cf72703ac8aa6c2c79f3b29382 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sun, 26 May 2024 13:18:13 -0500 Subject: [PATCH] add github workflow --- .github/workflows/gradle.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..47fb35d --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,26 @@ +# Adapted from Paper's build script +name: Build +on: [ push, pull_request ] + +jobs: + build: + # Only run on PRs if the source branch is on someone else's repo + if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} + runs-on: ubuntu-latest + strategy: + matrix: + java: [ 17 ] + fail-fast: true + steps: + - uses: actions/checkout@v3 + - name: JDK ${{ matrix.java }} + uses: actions/setup-java@v3 + with: + java-version: ${{ matrix.java }} + cache: 'gradle' + distribution: 'temurin' + - name: Build + run: | + git config --global user.email "no-reply@github.com" + git config --global user.name "Github Actions" + ./gradlew build --stacktrace