We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3841b9 commit 093d1c5Copy full SHA for 093d1c5
.github/workflows/checkBuild.yml
@@ -43,7 +43,8 @@ jobs:
43
cache: 'maven'
44
45
- name: Build with Maven
46
- run: ./mvnw -B clean package -P run-integration-tests
+ # Java 17 is required for running integration tests
47
+ run: ./mvnw -B clean package ${{ matrix.java >=17 && '-P run-integration-tests' || '' }}
48
49
- name: Check for uncommited changes
50
run: |
0 commit comments