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