rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/digdag

20 lines
359 B
Plaintext
Raw Normal View History

2019-10-21 08:18:17 +00:00
# this is digdag task definitions
timezone: UTC
+setup:
echo>: start ${session_time}
+disp_current_date:
echo>: ${moment(session_time).utc().format('YYYY-MM-DD HH:mm:ss Z')}
+repeat:
for_each>:
order: [first, second, third]
animal: [dog, cat]
_do:
echo>: ${order} ${animal}
_parallel: true
+teardown:
echo>: finish ${session_time}