From 5ce47b026b1dd76829bcdf26a7debf9c0c12c773 Mon Sep 17 00:00:00 2001 From: Pranjal Kumar Date: Mon, 16 Jun 2025 14:29:48 +0530 Subject: [PATCH] Added Workflow --- .github/workflows/java.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/java.yml diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml new file mode 100644 index 000000000..b344d975f --- /dev/null +++ b/.github/workflows/java.yml @@ -0,0 +1,21 @@ +name: Java CI with Gradle + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: 📥 Checkout code + uses: actions/checkout@v4 + + - name: ☕ Set up JDK 17 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + + - name: 📦 Build with Gradle + run: ./gradlew build +