Skip to content

Bump org.slf4j:slf4j-nop from 2.0.7 to 2.0.9 #1314

Bump org.slf4j:slf4j-nop from 2.0.7 to 2.0.9

Bump org.slf4j:slf4j-nop from 2.0.7 to 2.0.9 #1314

Workflow file for this run

name: 'Generate reports'
on:
push:
branches:
- main
pull_request:
jobs:
coverage:
runs-on: [ubuntu-latest]
name: Reporting on Ubuntu
steps:
- uses: actions/checkout@v4
- 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
}
}