Skip to content

Nicer refs; #128

Nicer refs; #128 #40

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path
name: Maven build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17, 21, 25 ]
name: Java ${{ matrix.java }} build
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'adopt'
- name: Maven Build
run: mvn --batch-mode --update-snapshots -ntp install