The simplest Conductor workflow — one task, one worker
Input: name | Timeout: 60s
Output: greeting
greet
GreetWorker (greet): Simple worker that greets a user by name.
Reads name. Outputs greeting.
greeting:${greet_ref.output.greeting}
greet: name = ${workflow.input.name}
5 tests cover valid inputs, boundary values, null handling, and error paths.
mvn testName: hello_world_workflow | Tasks: 1 | Workers: 1
Run this example: see RUNNING.md for setup, build, and CLI instructions.