From ddf06645140dde4b6c17e81fc271c3dc0f0e4818 Mon Sep 17 00:00:00 2001 From: Christian Femers Date: Tue, 11 Feb 2020 02:15:32 +0100 Subject: [PATCH] Configure GitHub Actions for Mograsim --- .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 00000000..0eee55b4 --- /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@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: Build with Maven + run: mvn --batch-mode --errors --fail-at-end --show-version clean verify --file pom.xml -- 2.17.1