From 68dd0673a9f3d18718ba91054b40122de7bdd7d4 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 17 Jun 2026 19:39:47 +0000 Subject: [PATCH] Add GitHub Actions CI workflow (clean install site) --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..7eb9e3c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + cache: maven + - run: ./mvnw --batch-mode clean install site -- 2.39.5