From 460fbf7e88487c9159d481783902b5cb40f92aef Mon Sep 17 00:00:00 2001 From: Zacharias Date: Tue, 15 Jul 2025 23:29:56 +0200 Subject: [PATCH] Added gradle.yml for github CI --- .github/workflows/gradle.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..60af163 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,23 @@ +name: Build + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up JDK 21 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + + - name: Build with Gradle + run: ./gradlew build --no-daemon \ No newline at end of file