From: Kai Moritz Date: Wed, 17 Jun 2026 19:39:47 +0000 (+0000) Subject: Add GitHub Actions CI workflow (clean install site) X-Git-Url: http://juplo.de/gitweb/?a=commitdiff_plain;h=68dd0673a9f3d18718ba91054b40122de7bdd7d4;p=maven-thymeleaf-skin Add GitHub Actions CI workflow (clean install site) --- 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