Skip to content

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

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

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

Workflow file for this run

name: Java CI with Maven
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 7
matrix:
os: [ubuntu-latest, windows-latest]
java: [8, 11, 17]
runtime: [ol, wlp-ee9, wlp-ee10]
runtime_version: [23.0.0.3]
exclude:
- java: 8
runtime: wlp-ee10
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn verify -Druntime="${{ matrix.runtime }}" -DruntimeVersion="${{ matrix.runtime_version }}"