Skip to content

Commit 9cf32b5

Browse files
committed
set up github actions
1 parent d5caa19 commit 9cf32b5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/maven.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Java CI
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
java: [8, 11]
9+
steps:
10+
- name: Checkout project
11+
uses: actions/checkout@v1
12+
- name: Set up JDK
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: ${{ matrix.java }}
16+
- name: Build with Maven
17+
run: mvn -B test

0 commit comments

Comments
 (0)