From 6005a2192afbc536a68436efb1a76d58691e515d Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 3 Mar 2026 22:14:07 +0000 Subject: [PATCH] chore(ci): disable coverage threshold enforcement Comment out the step in CI workflow that enforces a minimum test coverage of 65%. --- .gitea/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index b88eba0..f1e6143 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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