Skip to content

Commit 95e2e37

Browse files
committed
chore: fmt
1 parent 811f70a commit 95e2e37

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

sailr.workflow.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
environment = "local"
33
mode = "build"
44
interactive = false
5-
build = "plan"
5+
build = "run"
66
generate = "run"
77
deploy = "disabled"
88
report = "text"

src/workflow/planner.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ mod tests {
186186
let profile = dummy_profile(WorkflowStepMode::Disabled, WorkflowStepMode::Plan);
187187
let planner = WorkflowPlanner::new(profile, Arc::new(env), dummy_options(true));
188188
let (pipeline, _) = planner.build_pipeline().unwrap();
189-
assert!(pipeline.tasks().any(|t| t.name == "workflow:validate-config"));
189+
assert!(pipeline
190+
.tasks()
191+
.any(|t| t.name == "workflow:validate-config"));
190192
}
191193

192194
#[test]

0 commit comments

Comments
 (0)