Bump org.jenkins-ci:acceptance-test-harness from 6040.v72ed2f5b_59f6 to 6052.v122b_b_a_b_94b_60 #3535
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CodeCov' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
name: Create and upload coverage report | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
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.9 | |
- name: Generate coverage with JaCoCo | |
run: mvn -V --color always -ntp clean verify -Pci --file plugin/pom.xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4.6.0 | |
with: | |
file: 'plugin/target/site/jacoco/jacoco.xml' | |
disable_search: true | |
token: ${{secrets.CODECOV_TOKEN}} |