Skip to content

Commit 0134e14

Browse files
committed
GH actions: added GraalVM tests
1 parent a38141d commit 0134e14

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

.github/workflows/maven.yml

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,29 @@ jobs:
2020
java-version:
2121
- 8
2222
- 11
23-
- 15
23+
- 16
2424

2525
steps:
26-
- uses: actions/checkout@v1
26+
- uses: actions/checkout@v2
2727
- name: Set up JDK
28-
uses: actions/setup-java@v1
28+
uses: actions/setup-java@v2
2929
with:
30+
distribution: 'zulu'
3031
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'
3146
- name: Info
3247
run: mvn -version
3348
- name: Test

0 commit comments

Comments
 (0)