File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -15,21 +15,17 @@ jobs:
15
15
# test against latest update of each major Java version, as well as specific updates of LTS versions:
16
16
java : [ 17.0.4 ]
17
17
steps :
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
- name : Set up JDK ${{ matrix.java }}
20
- uses : actions/setup-java@v1
20
+ - uses : actions/setup-java@v4
21
21
with :
22
+ distribution : liberica
23
+ cache : ' maven'
24
+ cache-dependency-path : ' pom.xml'
22
25
java-version : ${{ matrix.java }}
23
- - name : Cache local Maven repository
24
- uses : actions/cache@v2
25
- with :
26
- path : ~/.m2/repository
27
- key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28
- restore-keys : |
29
- ${{ runner.os }}-maven-
30
- - name : Build with Maven
26
+ - name : Test with Maven
31
27
run : |
32
28
pwd
33
29
ls -lah
34
- ./mvnw clean package -DenableOomTests=true
30
+ ./mvnw clean test -DenableOomTests=true
35
31
rm -rf ~/.m2/repository/name/nkonev/r2dbc-migrate
You can’t perform that action at this time.
0 commit comments