-
Notifications
You must be signed in to change notification settings - Fork 59
58 lines (54 loc) · 1.56 KB
/
reporting.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
}
}