From b3a5ac887968b3680152f381cc5d10acd18c39ee Mon Sep 17 00:00:00 2001 From: unilock Date: Wed, 31 Jan 2024 16:33:00 -0500 Subject: [PATCH] workflow Signed-off-by: unilock --- .github/workflows/build.yml | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..63b18189 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,45 @@ +# Automatically build the project and run any configured tests for every push +# and submitted pull request. This can help catch issues that only occur on +# certain platforms or Java versions, and provides a first line of defense +# against bad commits. + +name: build +on: [pull_request, push, workflow_dispatch] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@v1 + + - name: Setup JDK 17 + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: microsoft + + - name: Setup Gradle caches + uses: actions/cache@v3 + with: + path: | + ~/.gradle/caches + ~/.gradle/loom-cache + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/gradle-wrapper.properties') }} + restore-keys: ${{ runner.os }}-gradle + + - name: Make Gradle wrapper executable + run: chmod +x ./gradlew + + - name: Build + run: ./gradlew build + + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: Artifacts + path: build/libs/