From bba2d13db50e427323b3c6bc057ff46896aaf9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?OS=20Aplet=20=E2=9D=A4=EF=B8=8F=C2=AE=EF=B8=8F?= <185862724+osAplet@users.noreply.github.com> Date: Mon, 24 Mar 2025 13:18:26 +0100 Subject: [PATCH] action.yml --- action.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/action.yml b/action.yml index 0969d5d..50968a5 100644 --- a/action.yml +++ b/action.yml @@ -84,3 +84,25 @@ runs: using: 'node20' main: 'dist/setup/index.js' post: 'dist/cleanup/index.js' + name: 'Build and Test Java Project' +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + + - name: Build with Gradle + run: ./gradlew build + + - name: Run tests + run: ./gradlew test