Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.2.3 #90

Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.2.3

Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.2.3 #90

Workflow file for this run

name: mvn
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Build
strategy:
matrix:
os: [ubuntu-20.04, windows-2022, macos-12]
java: [17]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: mvn clean install --errors --batch-mode