wrkflw-evaluator
Small, focused helper for statically evaluating GitHub Actions workflow files.
- Purpose: Fast structural checks (e.g.,
name,on,jobs) before deeper validation/execution - Used by:
wrkflwCLI and TUI during validation flows
Example
use Path;
let result = evaluate_workflow_file.expect;
if result.is_valid else
Notes
- This crate focuses on structural checks; deeper rules live in
wrkflw-validators. - Most consumers should prefer the top-level
wrkflwCLI for end-to-end UX.