mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2025-12-16 11:47:45 +01:00
wrkflw-models
Common data structures shared across crates.
ValidationResultfor structural/semantic checks- GitLab pipeline models (serde types)
Example
use wrkflw_models::ValidationResult;
let mut res = ValidationResult::new();
res.add_issue("missing jobs".into());
assert!(!res.is_valid);