Bump io.jenkins.configuration-as-code:test-harness from 1569.vb_72405b_80249 to 1700.v6f448841296e #146
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: | |
jobs: | |
coverage: | |
runs-on: [ ubuntu-latest ] | |
name: Coverage on Ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
check-latest: true | |
cache: 'maven' | |
- name: Generate coverage with JaCoCo | |
run: mvn clean verify jacoco:prepare-agent test integration-test jacoco:report | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
file: ./target/site/jacoco/jacoco.xml |