Skip to content

[maven-release-plugin] prepare for next development iteration #274

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #274

Workflow file for this run

name: build
on:
push:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java: ['17', '20']
runs-on: ${{ matrix.os }}
name: JDK ${{ matrix.java }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify