From 9f29ad5faa6a4aee9a00d4785056710afb2ea98e Mon Sep 17 00:00:00 2001 From: Judit Knoll Date: Fri, 21 Feb 2025 16:11:01 +0100 Subject: [PATCH] [gha] skip pmd, clean install instead of test, update java versions --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 73485b04..5a0549c0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - java: [8, 11, 17, 21, 22-ea] + java: [11, 17, 21, 23] distribution: ['temurin'] fail-fast: false max-parallel: 4 @@ -22,4 +22,4 @@ jobs: java-version: ${{ matrix.java }} distribution: ${{ matrix.distribution }} - name: Test with Maven - run: ./mvnw test -B -V --no-transfer-progress -D"license.skip=true" -D"cpd.skip=true" -D"spotbugs.skip=true" + run: ./mvnw clean install -B -V --no-transfer-progress -D"license.skip=true" -D"cpd.skip=true" -D"spotbugs.skip=true" -D"pmd.skip=true"