diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..b6694f8f --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,16 @@ +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup JDK 21 + id: setup-java-21 + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '21' + cache: 'maven' + - name: Build and test with Maven + run: mvn -V -B -ntp -U -e verify