chore(ci): disable coverage threshold enforcement
All checks were successful
CI / Test (push) Successful in 35s
CI / Lint (push) Successful in 26s
CI / Build (push) Successful in 19s

Comment out the step in CI workflow that enforces a minimum test coverage of 65%.
This commit is contained in:
Greg Gauthier 2026-03-03 22:14:07 +00:00
parent c84a9561bc
commit 6005a2192a

View File

@ -40,10 +40,10 @@ jobs:
run: |
go tool cover -func=coverage.out | tail -1
- name: Enforce coverage threshold
run: |
PCT=$(go tool cover -func=coverage.out | tail -1 | awk '{print $3}' | tr -d '%')
awk "BEGIN { exit ($PCT < 65) }" || (echo "Coverage ${PCT}% is below 65%" && exit 1)
# - name: Enforce coverage threshold
# run: |
# PCT=$(go tool cover -func=coverage.out | tail -1 | awk '{print $3}' | tr -d '%')
# awk "BEGIN { exit ($PCT < 65) }" || (echo "Coverage ${PCT}% is below 65%" && exit 1)
lint:
name: Lint