Skip to content

Commit 6a454a0

Browse files
committed
2 parents fac32f8 + 017ca22 commit 6a454a0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/maven.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
os: [ubuntu-18.04]
11+
java: [11, 11.0.9, 13, 13.0.4, 15, 16-ea]
12+
fail-fast: false
13+
max-parallel: 2
14+
name: Test JDK ${{ matrix.java }}, ${{ matrix.os }}
15+
16+
steps:
17+
- uses: actions/checkout@v1
18+
- name: Set up JDK
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: ${{ matrix.java }}
22+
- name: Test with Maven
23+
run: mvn test -B --file pom.xml

0 commit comments

Comments
 (0)