Skip to content

Update release configuration #13

Update release configuration

Update release configuration #13

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '21', '25' ]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Java
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
cache: maven
- name: Build
run: ./mvnw -ntp -B verify