From c2b3b3547c22d9ca819d716e05e45b95b3e2c6d3 Mon Sep 17 00:00:00 2001 From: Frode Carlsen Date: Tue, 13 Aug 2019 20:11:50 +0200 Subject: [PATCH] Add github actions for building --- .github/workflows/maven.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..758ae15 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@master + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + version: 1.8 + - name: Build with Maven + run: mvn package --file pom.xml