Skip to content

Update dependency org.jenkins-ci.plugins:plugin to v6.2153.vcf31911d1… #575

Update dependency org.jenkins-ci.plugins:plugin to v6.2153.vcf31911d1…

Update dependency org.jenkins-ci.plugins:plugin to v6.2153.vcf31911d1… #575

Workflow file for this run

name: 'Generate Coverage Report'
on:
push:
branches:
- master
pull_request:
jobs:
coverage:
runs-on: ubuntu-latest
name: Coverage on Ubuntu
steps:
- name: Set up JDK and Maven
uses: s4u/setup-maven-action@v1.20.0
with:
java-distribution: 'temurin'
java-version: '21'
- name: Generate coverage with JaCoCo
run: mvn clean jacoco:prepare-agent test jacoco:report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./target/site/jacoco/jacoco.xml