We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 879f50b commit ac1c41eCopy full SHA for ac1c41e
.github/workflows/ci-java-17-and-21.yml
.github/workflows/ci-java-8-and-11.yml renamed to .github/workflows/ci-java.yml
@@ -13,7 +13,7 @@ jobs:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- java: [ 8, 11 ]
+ java: [ 8, 11, 17, 21 ]
17
name: Java ${{ matrix.java }} build
18
steps:
19
- uses: actions/checkout@v4
@@ -35,7 +35,7 @@ jobs:
35
run: ./mvnw clean package -Dgpg.skip
36
- name: Compile integration tests
37
run: ./mvnw -Pintegration-test test-compile compile
38
- - if: ${{ matrix.java != 8 }}
+ - if: ${{ matrix.java == 11 }}
39
name: Check style with Spotless
40
run: ./mvnw spotless:check -Pintegration-test
41
0 commit comments