From d9cb8a5ec716b27f969766dbfac579c2370a230c Mon Sep 17 00:00:00 2001 From: Konrad Windszus Date: Tue, 25 Feb 2020 17:05:05 +0100 Subject: [PATCH] Add Maven Workflow --- .github/workflows/maven-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/maven-ci.yml diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml new file mode 100644 index 0000000..9fa0bd3 --- /dev/null +++ b/.github/workflows/maven-ci.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Maven + run: mvn -B package --file pom.xml