From 29eee7bf9d8f04e345af4843c9beed3d009b3b9e Mon Sep 17 00:00:00 2001 From: stijnb1234 Date: Thu, 30 Jan 2020 12:53:19 +0100 Subject: [PATCH] Github actions! --- .github/workflows/maven.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..2d910f9 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,23 @@ +name: Java CI + +on: [push] + +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 + - run: mkdir -p target + + - uses: actions/upload-artifact@master + with: + name: v10lift + path: target \ No newline at end of file