From c7a276839e4984d3235a8da81f58d73c69b98b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1lint=20Hegyi?= Date: Fri, 26 Jul 2024 15:43:46 +0100 Subject: [PATCH] Add basic workflow --- .github/workflows/ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..dd18a31 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,16 @@ +name: CI +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v2 + with: + distribution: 'temurin' + java-version: '21' + - uses: gradle/actions/setup-gradle@v3 + with: + validate-wrappers: true + - name: Execute Gradle build + run: ./gradlew build