From b5e7385da71ecd9e1cc017839edf392d6a28f14e Mon Sep 17 00:00:00 2001 From: Robin Strand Prestmo Date: Thu, 5 Mar 2026 10:25:19 +0100 Subject: [PATCH] Add CI workflow --- .github/{ => workflows}/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) rename .github/{ => workflows}/ci.yml (68%) diff --git a/.github/ci.yml b/.github/workflows/ci.yml similarity index 68% rename from .github/ci.yml rename to .github/workflows/ci.yml index 4dc3150..dd77cae 100644 --- a/.github/ci.yml +++ b/.github/workflows/ci.yml @@ -2,20 +2,21 @@ name: ci on: push: - branches: main + branches: [main] pull_request: - branches: main + branches: [main] jobs: test: runs-on: ubuntu-latest + steps: - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 with: - distribition: temurin + distribution: temurin java-version: "25" cache: maven - - run: - mvn -B test + - run: mvn -B test \ No newline at end of file