Skip to content

Commit fa3e675

Browse files
committed
ci(verify-report): render band report as a markdown table
Use score --format md and post the table directly (drop the code fence) for readability. Refs #1
1 parent 6dc1fc0 commit fa3e675

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/verify-report.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ jobs:
5858
{
5959
echo 'report<<VERIFY_EOF'
6060
echo "### Changed records in this PR"
61-
python -m app.verify score --changed --no-cache
61+
echo ""
62+
python -m app.verify score --changed --no-cache --format md
6263
echo ""
6364
echo "### Full-dataset baseline"
64-
python -m app.verify score --no-cache
65+
echo ""
66+
python -m app.verify score --no-cache --format md
6567
echo VERIFY_EOF
6668
} >> "$GITHUB_OUTPUT"
6769
@@ -79,12 +81,9 @@ jobs:
7981
marker,
8082
'## 🔎 Data verification — Tier 0 (offline existence/trust)',
8183
'',
82-
'Scored by `app.verify`; posted by **TechEngineBot**. Informational only —',
83-
'the structural gate (`app.validate`) is separate and authoritative for merge.',
84+
'Scored by `app.verify`; posted by **TechEngineBot**. Informational only — the structural gate (`app.validate`) is separate and authoritative for merge.',
8485
'',
85-
'```text',
8686
report,
87-
'```',
8887
'',
8988
'<sub>green = authoritative source + complete + consistent · '
9089
+ 'yellow = plausible, needs confirmation · red = sparse/weak source or a hard contradiction. '

0 commit comments

Comments
 (0)