diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index c6112a1d..ea79fe4b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - java: [17, 21] + java: [17, 21, 25] steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 @@ -35,7 +35,11 @@ jobs: - name: Test and Build with Gradle run: | - ./gradlew build test-integration + if [ "${{ matrix.java }}" = "25" ]; then + ./gradlew build test-integration -x spotlessCheck + else + ./gradlew build test-integration + fi - if: matrix.java == 17 name: Upload coverage to Codecov