Skip to content

Commit d923b94

Browse files
authored
Create maven.yml
1 parent fc6305a commit d923b94

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.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: [8, 8.0.192, 11, 11.0.2, 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)