File tree Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Expand file tree Collapse file tree 3 files changed +18
-10
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
build :
11
11
runs-on : ubuntu-latest
12
-
12
+ strategy :
13
+ matrix :
14
+ java : [ '8', '11' ]
13
15
steps :
14
16
- name : Setup Java JDK
15
- uses : actions/setup-java@v1.4.3
17
+ uses : actions/setup-java@v3
16
18
with :
17
- java-version : 1.8
19
+ distribution : ' temurin'
20
+ java-version : ${{ matrix.java }}
18
21
id : java
19
22
- name : Setup Go environment
20
23
uses : actions/setup-go@v2
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
build :
13
13
runs-on : ubuntu-latest
14
-
14
+ strategy :
15
+ matrix :
16
+ java : [ '8', '11' ]
15
17
steps :
16
18
- name : Setup Java JDK
17
- uses : actions/setup-java@v1.4.3
19
+ uses : actions/setup-java@v3
18
20
with :
19
- java-version : 1.8
20
- id : java
21
+ distribution : ' temurin '
22
+ java-version : ${{ matrix. java }}
21
23
- uses : actions/checkout@v2
22
24
- name : Run integration test
23
25
run : ./integration/integration_test.sh -e
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
build :
13
13
runs-on : ubuntu-latest
14
-
14
+ strategy :
15
+ matrix :
16
+ java : [ '8', '11' ]
15
17
steps :
16
18
- name : Setup Java JDK
17
- uses : actions/setup-java@v1.4.3
19
+ uses : actions/setup-java@v3
18
20
with :
19
- java-version : 1.8
21
+ distribution : ' temurin'
22
+ java-version : ${{ matrix.java }}
20
23
id : java
21
24
- uses : actions/checkout@v2
22
25
with :
You can’t perform that action at this time.
0 commit comments