Skip to content

Commit 1f69bb5

Browse files
committed
Add github ci action
1 parent bd1fcaa commit 1f69bb5

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/verify.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: verify
2+
on: [push, pull_request]
3+
jobs:
4+
verify:
5+
strategy:
6+
matrix:
7+
platform: [ubuntu-latest, macos-latest, windows-latest]
8+
runs-on: ${{ matrix.platform }}
9+
steps:
10+
- name: Check out repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up JDK 7
14+
uses: actions/setup-java@v1
15+
with:
16+
java-version: 7
17+
18+
- name: Cache Maven packages
19+
uses: actions/cache@v2
20+
with:
21+
path: ~/.m2
22+
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
23+
restore-keys: ${{ runner.os }}-m2
24+
25+
- name: Maven verify
26+
run: mvn -B verify -Prun-its

0 commit comments

Comments
 (0)