Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
java: [17, 21]
java: [17, 21, 25]
Comment thread
curfew-marathon marked this conversation as resolved.

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -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 -x spotlessJavaCheck
Comment thread
curfew-marathon marked this conversation as resolved.
Outdated
else
./gradlew build test-integration
fi

- if: matrix.java == 17
name: Upload coverage to Codecov
Expand Down
Loading