maven-build.yml

Trying to get actions to trigger
This commit is contained in:
Liam Newman
2019-09-09 16:15:35 -07:00
committed by GitHub
parent cccd09d329
commit f1386f26fb

20
.github/workflows/maven-build.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Java CI Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Maven Download all dependencies
run: mvn -B org.apache.maven.plugins:maven-dependency-plugin:3.1.1:go-offline
- name: Maven Build
run: mvn -B package --file pom.xml -Dtest=GistTest,UserTest