Skip to content

Commit cced692

Browse files
committed
ci: enforce meaningful coverage floor
1 parent cb7eb33 commit cced692

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci-devsecops.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
[xml]$coverage = Get-Content $coveragePath
5656
$lineRate = [double]$coverage.coverage.'line-rate' * 100
5757
$branchRate = [double]$coverage.coverage.'branch-rate' * 100
58-
# Temporary floor until the service-hardening coverage tasks land.
59-
$minimumLineRate = 1.5
58+
# Keep the gate slightly below measured main coverage so meaningful tests can raise it deliberately.
59+
$minimumLineRate = 35.0
6060
6161
$summary = @(
6262
"## Coverage Gate",

0 commit comments

Comments
 (0)