Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 #413

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 #413

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: Build with Maven
run: mvn clean install
- name: Test coverage Report
run: mvn jacoco:prepare-agent test jacoco:report
- uses: codecov/codecov-action@v4.5.0