From 313f24ff07638fd2e556b630df864cbd263ab9b3 Mon Sep 17 00:00:00 2001 From: Chris Coltsman Date: Mon, 1 Feb 2021 21:25:49 +0100 Subject: [PATCH] Added github action to build pull-requests --- .github/workflows/build-pullrequest.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build-pullrequest.yml diff --git a/.github/workflows/build-pullrequest.yml b/.github/workflows/build-pullrequest.yml new file mode 100644 index 00000000000..4d467b036dd --- /dev/null +++ b/.github/workflows/build-pullrequest.yml @@ -0,0 +1,19 @@ +name: Pull Request Workflow + +on: + pull_request: + +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 -B verify --no-transfer-progress