From 628670371dd74186618c610b86656b064fa032b8 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..9a4ad91 --- /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 verify