Bump org.jenkins-ci.plugins:mailer from 448.v5b_97805e3767 to 488.v0c9639c1a_eb_3 #487
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: 'Github base Continuous Integration' | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
coverage: | |
runs-on: [ ubuntu-latest ] | |
name: Coverage on Ubuntu | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
check-latest: true | |
cache: 'maven' | |
- name: Generate coverage with JaCoCo | |
run: mvn --batch-mode clean verify jacoco:prepare-agent test integration-test jacoco:report | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
file: ./target/site/jacoco/jacoco.xml |