Quickstart
This guide walks through installing Replay and running your first workflow.Prerequisites
- A working internet connection (for the HTTP example)
- Go 1.25+ or Docker (for installation)
1. Install Replay
2. Create a Workflow
Create a file calledhello.yaml:
3. Run It
print steps display their message on an indented line between the step header and the PASS status.
4. Understand What Happened
- Step 1 (
greet): Printed “Hello, Replay!” using theprintstep type - Step 2 (
check-http): Made a GET request to httpbin.org, extracted theoriginIP into a variable, asserted status 200 and non-null origin - Step 3 (
report): Reused the extracted{{ origin }}variable in a second print statement
origin from step 2 into step 3 automatically.
5. Run Multiple Workflows
Createslow-a.yaml:
What’s Next?
- Learn about installation options
- Dive into writing workflows
- Explore use cases for QA and dev teams