Skip to content

Bump org.jenkins-ci.tools:maven-hpi-plugin from 3.1773.v3646231d4c22 to 3.1787.vd08d76c755ef #370

Bump org.jenkins-ci.tools:maven-hpi-plugin from 3.1773.v3646231d4c22 to 3.1787.vd08d76c755ef

Bump org.jenkins-ci.tools:maven-hpi-plugin from 3.1773.v3646231d4c22 to 3.1787.vd08d76c755ef #370

Workflow file for this run

name: 'CodeCov'
on:
push:
branches:
- master
- main
pull_request:
jobs:
coverage:
runs-on: ubuntu-latest
name: Create and upload coverage report
steps:
- uses: actions/checkout@v6.0.1
- name: Set up JDK 21
uses: actions/setup-java@v5.1.0
with:
distribution: 'temurin'
java-version: '21'
check-latest: true
cache: 'maven'
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.6
- name: Generate coverage with JaCoCo
run: mvn -V --color always -ntp clean verify --file pom.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.5.2
with:
files: 'target/site/jacoco/jacoco.xml'
token: ${{secrets.CODECOV_TOKEN}}