Skip to content

Commit e95211c

Browse files
committed
gh actions
1 parent 4fb44bb commit e95211c

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/maven.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Java CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
13+
test:
14+
15+
needs: verify
16+
17+
runs-on: ubuntu-latest
18+
19+
strategy:
20+
fail-fast: false
21+
matrix:
22+
java-version:
23+
- 8
24+
- 11
25+
- 14
26+
27+
steps:
28+
- uses: actions/checkout@v1
29+
- name: Set up JDK
30+
uses: actions/setup-java@v1
31+
with:
32+
java-version: ${{ matrix.java-version }}
33+
- name: Info
34+
run: mvn -version
35+
- name: Test
36+
run: mvn -e --no-transfer-progress test

0 commit comments

Comments
 (0)