From f1386f26fb23456c5398bd4a970c74569efe9d60 Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Mon, 9 Sep 2019 16:15:35 -0700 Subject: [PATCH] maven-build.yml Trying to get actions to trigger --- .github/workflows/maven-build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/maven-build.yml diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml new file mode 100644 index 000000000..100a43a85 --- /dev/null +++ b/.github/workflows/maven-build.yml @@ -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