File tree Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Expand file tree Collapse file tree 1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,29 @@ jobs:
20
20
java-version :
21
21
- 8
22
22
- 11
23
- - 15
23
+ - 16
24
24
25
25
steps :
26
- - uses : actions/checkout@v1
26
+ - uses : actions/checkout@v2
27
27
- name : Set up JDK
28
- uses : actions/setup-java@v1
28
+ uses : actions/setup-java@v2
29
29
with :
30
+ distribution : ' zulu'
30
31
java-version : ${{ matrix.java-version }}
32
+ cache : ' maven'
33
+ - name : Info
34
+ run : mvn -version
35
+ - name : Test
36
+ run : mvn -e --no-transfer-progress test
37
+
38
+ # test behavior comparing to JSON.stringify() and JSON.parse()
39
+ test-graavm :
40
+ runs-on : ubuntu-latest
41
+ steps :
42
+ - uses : actions/checkout@latest
43
+ - uses : DeLaGuardo/setup-graalvm@4.0
44
+ with :
45
+ graalvm : ' 21.2.0'
31
46
- name : Info
32
47
run : mvn -version
33
48
- name : Test
You can’t perform that action at this time.
0 commit comments