Rundown
# FAIL CONTINUE
FAIL: CONTINUE proceeds to the next step even when a step fails.
## 1. Optional step
- PASS: COMPLETE
- FAIL: CONTINUE
Best effort execution.
```bash
rd echo "optional step"
```
## 2. Cleanup
- PASS: COMPLETE
Executes after step 1, even if step 1 failed.
```bash
rd echo "cleanup"
``` Run
Step fails, CONTINUE advances to cleanup, which passes
Initializing...
Initializing...
Step—/—