File tree Expand file tree Collapse file tree 2 files changed +205
-262
lines changed Expand file tree Collapse file tree 2 files changed +205
-262
lines changed Original file line number Diff line number Diff line change @@ -21,28 +21,23 @@ jobs:
21
21
uses : actions/setup-java@v4
22
22
with :
23
23
distribution : temurin
24
- java-version : 17
24
+ java-version : 21
25
25
cache : ' maven'
26
26
- name : Check code format
27
27
run : |
28
- ./mvnw ${MAVEN_ARGS} formatter:validate -Dconfigfile=$PWD/contributing/eclipse-google-style.xml
29
- ./mvnw ${MAVEN_ARGS} impsort:check
28
+ ./mvnw ${MAVEN_ARGS} spotless:check --file pom.xml
30
29
- name : Run unit tests
31
30
run : ./mvnw ${MAVEN_ARGS} clean install
32
31
33
32
build_with_integration_tests :
34
33
runs-on : ubuntu-latest
35
- strategy :
36
- matrix :
37
- java : [ 17 ]
38
- kubernetes : [ 'v1.26.12', 'v1.27.9', 'v1.28.5' ]
39
34
steps :
40
35
- uses : actions/checkout@v4
41
36
- name : Set up Java and Maven
42
37
uses : actions/setup-java@v4
43
38
with :
44
39
distribution : temurin
45
- java-version : ${{ matrix.java }}
40
+ java-version : 21
46
41
cache : ' maven'
47
42
- name : Run integration tests
48
43
run : ./mvnw ${MAVEN_ARGS} clean install
You can’t perform that action at this time.
0 commit comments