documentation icon indicating copy to clipboard operation
documentation copied to clipboard

Add tips on structuring your pipeline

Open sebbacon opened this issue 4 years ago • 4 comments

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

sebbacon avatar Nov 30 '20 08:11 sebbacon