wrkflw-models 0.8.0

Data models and structures for wrkflw workflow execution engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## wrkflw-models

Common data structures shared across crates.

- `ValidationResult` for structural/semantic checks
- GitLab pipeline models (serde types)

### Example

```rust
use wrkflw_models::ValidationResult;

let mut res = ValidationResult::new();
res.add_issue("missing jobs".into());
assert!(!res.is_valid);
```