Running Workflows

Execute a Workflow

naos workflow run data-pipeline

# Output:
# ✓ Step 1: fetch-data    (2.1s)
# ✓ Step 2: clean-data    (0.8s)
# ✓ Step 3: analyze       (3.5s)
# ✓ Step 4: report        (1.2s)
# ✓ Workflow completed in 7.6s

Failed Execution

naos workflow run data-pipeline

# Output:
# ✓ Step 1: fetch-data    (2.1s)
# ✓ Step 2: clean-data    (0.8s)
# ✗ Step 3: analyze       (failed: out of memory)
# ✗ Workflow failed at step 3

Resume from Failure

naos workflow resume data-pipeline

# Resuming from step 3...
# ✓ Step 3: analyze       (3.5s)
# ✓ Step 4: report        (1.2s)
# ✓ Workflow completed