From f30ce54a43f72ce3544da4b12a5e4922060b45b3 Mon Sep 17 00:00:00 2001 From: Arno Date: Wed, 25 Mar 2020 19:52:22 +0100 Subject: [PATCH] created ci.yml - use github actions - addresses issue #19 --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c61b5e5 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: 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 clean verify --file pom.xml