Skip to content

Commit 24d464b

Browse files
authored
Add github build action
This ensures that PR's at least build Currently runs no tests, since they all depend on having user level access to github
1 parent 3ae8ee8 commit 24d464b

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.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:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v1
18+
- name: Set up JDK 1.8
19+
uses: actions/setup-java@v1
20+
with:
21+
java-version: 1.8
22+
- name: Build with Maven
23+
run: mvn package --file pom.xml -DskipTests

0 commit comments

Comments
 (0)