From 637987aafb9f5332fc97cf2bf4e180fc48c29169 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Wed, 11 Dec 2024 14:15:55 +0000 Subject: [PATCH] action (#1) Reviewed-on: https://git.ale-pri.com/Ryuk/Sudoku/pulls/1 Co-authored-by: Persson-dev Co-committed-by: Persson-dev --- .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..f018472 --- /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: '17' + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 + + - name: Build with Gradle + run: ./gradlew build + + - name: Test + run: ./gradlew test