Skip to content

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.1 #91

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.1

Bump org.apache.maven.plugins:maven-failsafe-plugin from 3.2.5 to 3.3.1 #91

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 }}