Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.1 #205

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.1

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.2.1 #205

Workflow file for this run

name: mvn verify
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
- name: Cache local maven repository
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ matrix.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ matrix.os }}-m2
- name: Build with Maven
run: mvn -B -V -e "-Dstyle.color=always" verify
env:
MAVEN_OPTS: -Djansi.force=true