From 306f403f1840b0f08db7cdfe49cf0588875a7515 Mon Sep 17 00:00:00 2001 From: Ponk <81079018+P0nk@users.noreply.github.com> Date: Sat, 10 Apr 2021 11:21:40 +0200 Subject: [PATCH] Set up Actions PR pipeline (#18) Create Actions PR pipeline - this will automatically run on opened Pull Requests to make sure they compile and pass all (future) tests. --- .github/workflows/pr-pipeline.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pr-pipeline.yml diff --git a/.github/workflows/pr-pipeline.yml b/.github/workflows/pr-pipeline.yml new file mode 100644 index 0000000000..aec43abdf0 --- /dev/null +++ b/.github/workflows/pr-pipeline.yml @@ -0,0 +1,23 @@ +# 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: PR-maven-package + +on: + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 8 + uses: actions/setup-java@v2 + with: + java-version: '8' + distribution: 'adopt' + - name: Build with Maven (compile -> test -> package) + run: mvn -B package --file pom.xml