From 61bd3238d22d9c49263ae4c0468d74ce15171cac Mon Sep 17 00:00:00 2001 From: Andrew Auclair Date: Sun, 3 Dec 2023 11:57:43 -0500 Subject: [PATCH] Rename gradle.yml to publish.yml and add build.yml --- .github/workflows/build.yml | 28 +++++++++++++++++++ .github/workflows/{gradle.yml => publish.yml} | 0 2 files changed, 28 insertions(+) create mode 100644 .github/workflows/build.yml rename .github/workflows/{gradle.yml => publish.yml} (100%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..6ae5037c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,28 @@ +# 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. + +# GitHub recommends pinning actions to a commit SHA. +# To get a newer version, you will need to update the SHA. +# You can also reference a tag or branch, but the action may change without warning. + +name: Build +on: push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Java + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + - name: Build + uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 + with: + arguments: build diff --git a/.github/workflows/gradle.yml b/.github/workflows/publish.yml similarity index 100% rename from .github/workflows/gradle.yml rename to .github/workflows/publish.yml