Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0 #193

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0 #193

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn clean verify
- name: Upload coverage to Codecov
if: matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: false