Bump error-prone.version from 2.20.0 to 2.21.0 #1284
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: 'Generate reports' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: [ubuntu-latest] | |
name: Reporting 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 -V --color always -ntp clean verify --file pom.xml '-Dgpg.skip' | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
- name: Mutation Coverage | |
run: mvn -V --color always -ntp org.pitest:pitest-maven:mutationCoverage | |
- name: Autograding | |
uses: uhafner/[email protected] | |
with: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HEAD_SHA: ${{github.event.pull_request.head.sha}} | |
CONFIG: > | |
{ | |
"analysis": { | |
"maxScore": 100, | |
"errorImpact": -5, | |
"highImpact": -2, | |
"normalImpact": -1, | |
"lowImpact": -1 | |
}, | |
"tests": { | |
"maxScore": 100, | |
"failureImpact": -10 | |
}, | |
"coverage": { | |
"maxScore": 100, | |
"missedPercentageImpact": -1 | |
}, | |
"pit": { | |
"maxScore": 100, | |
"undetectedPercentageImpact": -1 | |
} | |
} |