Skip to content

Bump org.apache.maven.plugins:maven-invoker-plugin from 3.8.1 to 3.9.0 #657

Bump org.apache.maven.plugins:maven-invoker-plugin from 3.8.1 to 3.9.0

Bump org.apache.maven.plugins:maven-invoker-plugin from 3.8.1 to 3.9.0 #657

Workflow file for this run

name: Java Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
java: [11, 17, 18]
fail-fast: false
name: Test on JDK ${{ matrix.java }}, ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
- name: Test with Maven
run: mvn -B --file pom.xml test
- name: Verify with Maven
run: mvn -B -f pom.xml verify