mirror of
https://github.com/bahdotsh/wrkflw.git
synced 2026-05-18 05:05:35 +02: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);