Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.3 #385

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.3

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.2 to 3.2.3 #385

Workflow file for this run

name: "CI"
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
java_version: [8, 11, 17]
os: [windows-latest, macOS-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build with Maven
run: mvn -B install --file pom.xml
- name: Report code coverage to codecov
uses: codecov/codecov-action@v3