From 50bce2f59ff963a295525174e92d5ba59f9628e6 Mon Sep 17 00:00:00 2001 From: phenoAI Governance Date: Sun, 14 Jun 2026 03:13:22 -0700 Subject: [PATCH] chore(tooling): add coverage task to Taskfile.yml and justfile --- Taskfile.yml | 5 +++++ justfile | 3 +++ 2 files changed, 8 insertions(+) diff --git a/Taskfile.yml b/Taskfile.yml index 152af12..0d610fa 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -20,3 +20,8 @@ tasks: ci: desc: Run full local CI sweep cmds: [task lint, task test, task audit] + + coverage: + desc: Measure code coverage (SSOT: see grade.sh for the canonical command). + cmds: + - cargo llvm-cov --workspace --fail-under-lines 85 diff --git a/justfile b/justfile index df61ca2..e53149d 100644 --- a/justfile +++ b/justfile @@ -24,3 +24,6 @@ grade-html: @echo "=== Running grade (HTML) ===" ./grade.sh --html +# Measure code coverage (SSOT: see grade.sh for the canonical command) +coverage: + cargo llvm-cov --workspace --fail-under-lines 85