Skip to content

Commit f1386f2

Browse files
authored
maven-build.yml
Trying to get actions to trigger
1 parent cccd09d commit f1386f2

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/maven-build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Java CI Build and Test
2+
3+
on: [push, pull_request]
4+
5+
6+
jobs:
7+
build:
8+
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v1
13+
- name: Set up JDK 1.8
14+
uses: actions/setup-java@v1
15+
with:
16+
java-version: 1.8
17+
- name: Maven Download all dependencies
18+
run: mvn -B org.apache.maven.plugins:maven-dependency-plugin:3.1.1:go-offline
19+
- name: Maven Build
20+
run: mvn -B package --file pom.xml -Dtest=GistTest,UserTest

0 commit comments

Comments
 (0)