Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit b6485ac

Browse files
geertjanwlsimons
authored andcommitted
Create maven.yml
1 parent e89a55b commit b6485ac

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, windows-2016]
11+
java: [7, 7.0.232, 8, 8.0.192]
12+
fail-fast: false
13+
max-parallel: 3
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)