fabro/lib/crates/fabro-cli/tests/it/workflow
Bryan Helmkamp 1048534e2c
ci: switch clippy to pinned nightly, clean up workspace lints
- rust.yml: move clippy to nightly-2026-04-14 (was stable); also pin
  fmt to the same nightly date for consistency. Both jobs now use the
  dated nightly and the run-step uses `cargo +nightly-2026-04-14 ...`.
- AGENTS.md: update developer commands to match CI.
- Duration constructors: replace `Duration::from_secs(N * 60)` /
  `Duration::from_millis(N * 1000)` with `from_mins` / `from_secs` /
  `from_hours` across the workspace to satisfy clippy's new
  `duration_suboptimal_units` lint. std::time::Duration only — custom
  `settings::duration::Duration` sites kept on `from_secs`.
- map/unwrap_or cleanup: `.map(f).unwrap_or(v)` → `.map_or(v, f)`,
  `.map(f).unwrap_or(false)` on Result → `.is_ok_and(f)`, per
  `clippy::map_unwrap_or`.
- Misc lints: collapse nested `if` into match guard in
  handler/llm/api.rs and run_state.rs; replace `columns.len() > 0`
  with `!columns.is_empty()`; switch a pair of `sort_by` calls to
  `sort_by_key`.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-16 18:59:11 -04:00
..
fixtures Extract workflow E2E tests into workflow/ directory 2026-03-30 11:41:18 -04:00
agent_linear.rs refactor(cli): route run state through the shared server daemon 2026-04-05 00:15:33 -04:00
command_agent_mixed.rs refactor(scratch): remove stale scratch file refs 2026-04-07 20:40:06 -04:00
command_pipeline.rs refactor(scratch): remove stale scratch file refs 2026-04-07 20:40:06 -04:00
conditional_branching.rs refactor(cli): route run state through the shared server daemon 2026-04-05 00:15:33 -04:00
dry_run_examples.rs fix(tests): stabilize graph path snapshots and skip LLM preflight for non-LLM graphs 2026-04-15 11:41:17 -04:00
full_stack.rs refactor(scratch): remove stale scratch file refs 2026-04-07 20:40:06 -04:00
hooks.rs refactor(config): unify machine config as settings.toml 2026-04-05 23:55:28 -04:00
human_gate.rs refactor(cli): route run state through the shared server daemon 2026-04-05 00:15:33 -04:00
mod.rs ci: switch clippy to pinned nightly, clean up workspace lints 2026-04-16 18:59:11 -04:00
real_cli.rs Add typed provider credential auth flow 2026-04-12 22:10:11 -04:00