Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 #153

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 #153

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Build & Test
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- name: Build with Maven
run: mvn clean package -B
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}