From fc98468b76adb8602dd327f476eac035f9fcdb50 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Fri, 17 Dec 2021 14:46:56 +0000 Subject: [PATCH] Add pr workflow --- .github/workflows/ci-pr.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci-pr.yml diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml new file mode 100644 index 00000000..0275a185 --- /dev/null +++ b/.github/workflows/ci-pr.yml @@ -0,0 +1,16 @@ +name: CI PRs + +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + name: CI PR Build + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-java@v2 + with: + distribution: adopt + java-version: 8 + - run: ./mvnw -B package