Skip to content

Commit bf1008d

Browse files
authored
Setup ci
1 parent d81c88b commit bf1008d

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Continuous Integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- name: Set up JDK 1.7
11+
uses: actions/setup-java@v1
12+
with:
13+
java-version: 1.7
14+
- name: Build with Maven
15+
run: mvn -B package --file pom.xml

0 commit comments

Comments
 (0)