From d2a8803a82813d06bbc92a5e90105e407d8a9c2e Mon Sep 17 00:00:00 2001 From: Piotrek Zygielo Date: Mon, 4 Mar 2024 11:42:26 +0100 Subject: [PATCH] Setup GH Workflow --- .github/workflows/concurro.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/concurro.yml diff --git a/.github/workflows/concurro.yml b/.github/workflows/concurro.yml new file mode 100644 index 0000000..10e3f48 --- /dev/null +++ b/.github/workflows/concurro.yml @@ -0,0 +1,21 @@ +name: Concurro CI + +on: + workflow_dispatch: + pull_request: + +jobs: + build: + name: "Build and test" + runs-on: ubuntu-latest + + steps: + - name: Checkout for build + uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: 21 + - name: Build with Maven + run: mvn -V -ntp -P staging -Ddash.skip verify