documentation
documentation copied to clipboard
Add tips on structuring your pipeline
In particular,
- ensure you pull out repetitive bits into their own actions
- change expensive long-running loops so they can be run as individual actions with different parameters
The former saves you time by allowing you to use previously-computed outputs for dependent actions.
The latter gives you easy parallelisation for your loops