From 435b4da6f89bc0dea3bc2b17c75204fad4098ce4 Mon Sep 17 00:00:00 2001 From: PJ Reiniger Date: Sun, 5 Nov 2023 00:45:37 -0400 Subject: [PATCH] Make github actions --- .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..70596e1 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,26 @@ +name: Java CI + +on: [push] + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} + cancel-in-progress: true + +jobs: + build: + strategy: + fail-fast: false + matrix: + platform: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.platform }} + + steps: + - uses: actions/checkout@v1 + + - name: Set up Java + uses: actions/setup-java@v1 + with: + java-version: 1.11 + + - name: Build Everything + run: ./gradlew build --continue -x test -x pmdMain