summary refs log tree commit diff
path: root/.github
diff options
context:
space:
mode:
authorash lea <example@thisismyactual.email>2026-06-01 14:25:40 -0400
committerash lea <example@thisismyactual.email>2026-06-01 14:25:40 -0400
commit52b847653296f6e80fd68678b2a88ee9f560eaff (patch)
treeb52750d0b649f64a670552d1776e39f6a0a676d3 /.github
initial commit
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..b93c3c6
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,30 @@
+name: Build
+
+on: [push, pull_request]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout repository
+        uses: actions/checkout@v4
+        with:
+          fetch-depth: 0
+          fetch-tags: true
+
+      - name: Setup JDK 21
+        uses: actions/setup-java@v4
+        with:
+          java-version: '21'
+          distribution: 'temurin'
+
+      - name: Setup Gradle
+        uses: gradle/actions/setup-gradle@v4
+
+      # This is needed to be able to run ./gradlew below
+      # You can run `git update-index --chmod +x gradlew` then remove this step.
+      - name: Make Gradle wrapper executable
+        run: chmod +x ./gradlew
+
+      - name: Build with Gradle
+        run: ./gradlew build
\ No newline at end of file