From 54f74cb0974045aa9df7b5d3fd0e96c141ecfb9b Mon Sep 17 00:00:00 2001 From: merkrafter Date: Sun, 17 Nov 2019 14:42:31 +0100 Subject: [PATCH] Create Merkompiler.yml --- .github/workflows/Merkompiler.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/Merkompiler.yml diff --git a/.github/workflows/Merkompiler.yml b/.github/workflows/Merkompiler.yml new file mode 100644 index 00000000..7b2b46c8 --- /dev/null +++ b/.github/workflows/Merkompiler.yml @@ -0,0 +1,27 @@ +name: Java CI + +on: + pull_request: + push: + branches: + - master + - development + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - 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 + - name: Download artifact + uses: actions/download-artifact@v1.0.0 + with: + name: Merkompiler.jar + path: target/Merkompiler-jar-with-dependencies.jar