From 168de2d39d944236c926498a1f9e6f6f18ea1cb7 Mon Sep 17 00:00:00 2001 From: psociety Date: Fri, 26 Jun 2026 12:04:35 +0200 Subject: [PATCH] + Run tests on PRs --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..f7dca19 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +name: CI + +on: + pull_request: + branches: [ "master" ] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + java-version: '25' + distribution: 'temurin' + - uses: gradle/actions/setup-gradle@v4 + - name: Run tests + working-directory: Roseau-Server + run: gradle test