Bump org.jenkins-ci.plugins:plugin from 6.2138.v03274d462c13 to 6.2153.vcf31911d10c4 #1111
This file contains hidden or 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@v6 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| 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.13 | |
| - name: Generate coverage with JaCoCo | |
| run: mvn --batch-mode clean verify jacoco:prepare-agent test jacoco:report | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| files: ./target/site/jacoco/jacoco.xml | |
| verbose: true |