Skip to content

Commit

Permalink
Fix configuration of quality-monitor.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed May 10, 2024
1 parent 568781e commit 6483941
Showing 1 changed file with 8 additions and 26 deletions.
34 changes: 8 additions & 26 deletions .github/workflows/quality-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ jobs:
"name": "Tests",
"pattern": "**/target/*-reports/TEST*.xml"
}
],
"passedImpact": 0,
"skippedImpact": -1,
"failureImpact": -5,
"maxScore": 100
]
},
"analysis": [
{
Expand All @@ -57,18 +53,13 @@ jobs:
"tools": [
{
"id": "checkstyle",
"pattern": "**/target/**checkstyle-result.xml"
"pattern": "**/target/checkstyle-*/checkstyle-result.xml"
},
{
"id": "pmd",
"pattern": "**/target/**pmd.xml"
"pattern": "**/target/pmd-*/pmd.xml"
}
],
"errorImpact": -1,
"highImpact": -1,
"normalImpact": -1,
"lowImpact": -1,
"maxScore": 100
]
},
{
"name": "Bugs",
Expand All @@ -81,15 +72,10 @@ jobs:
"pattern": "**/target/spotbugsXml.xml"
},
{
"id": "errorprone",
"id": "error-prone",
"pattern": "**/maven.log"
}
],
"errorImpact": -3,
"highImpact": -3,
"normalImpact": -3,
"lowImpact": -3,
"maxScore": 100
]
}
],
"coverage": [
Expand All @@ -110,9 +96,7 @@ jobs:
"sourcePath": "src/main/java",
"pattern": "**/target/site/jacoco/jacoco.xml"
}
],
"maxScore": 100,
"missedPercentageImpact": -1
]
},
{
"name": "Mutation Coverage",
Expand All @@ -124,9 +108,7 @@ jobs:
"sourcePath": "src/main/java",
"pattern": "**/target/pit-reports/mutations.xml"
}
],
"maxScore": 100,
"missedPercentageImpact": -1
]
}
]
}
Expand Down

0 comments on commit 6483941

Please sign in to comment.