From e5e3d2b240c5b2aa6e1a6c08c9654572a3c6f430 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sun, 15 Mar 2026 21:49:56 -0400 Subject: [PATCH] Update smoke workflow to use quiet clippy and nextest Match the implement workflow commands: cargo clippy -q and cargo nextest run --cargo-quiet --status-level fail. Co-Authored-By: Claude Opus 4.6 (1M context) --- fabro/workflows/smoke/workflow.fabro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabro/workflows/smoke/workflow.fabro b/fabro/workflows/smoke/workflow.fabro index 4df2c333d..cb78fd79a 100644 --- a/fabro/workflows/smoke/workflow.fabro +++ b/fabro/workflows/smoke/workflow.fabro @@ -5,7 +5,7 @@ digraph Smoke { start [shape=Mdiamond, label="Start"] exit [shape=Msquare, label="Exit"] - main [label="Smoke Test", prompt="Run each of these commands in order and report the results. If any command fails, continue running the rest and report all results at the end.\n\n1. rustc --version && cargo --version\n2. bun --version\n3. cargo fmt --check --all\n4. cargo clippy --workspace -- -D warnings\n5. cargo test --workspace\n6. cd apps/fabro-web && bun install && bun run typecheck\n7. cd apps/fabro-web && bun test\n\nReport a summary table of pass/fail for each step."] + main [label="Smoke Test", prompt="Run each of these commands in order and report the results. If any command fails, continue running the rest and report all results at the end.\n\n1. rustc --version && cargo --version\n2. bun --version\n3. cargo fmt --check --all\n4. cargo clippy -q --workspace -- -D warnings\n5. cargo nextest run --cargo-quiet --workspace --status-level fail\n6. cd apps/fabro-web && bun install && bun run typecheck\n7. cd apps/fabro-web && bun test\n\nReport a summary table of pass/fail for each step."] start -> main -> exit }