From e391e703e193e2afcd365b47766cfcf893d0b917 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Sun, 4 May 2025 10:29:29 +0200 Subject: [PATCH] feat: add actions --- .github/workflows/build.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 0000000..c68047a --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,25 @@ +name: Linux arm64 +run-name: Build And Test + +on: [push] + +jobs: + Build: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + + - uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + + - name: Build with Gradle + run: ./gradlew assemble + + - name: Test + run: ./gradlew test