1
0
mirror of https://github.com/go-task/task.git synced 2025-02-11 13:53:03 +02:00
task/testdata/summary/Taskfile.yml

27 lines
566 B
YAML
Raw Permalink Normal View History

version: '3'
2019-02-24 16:10:43 +01:00
2019-02-24 09:53:49 +01:00
tasks:
2019-02-24 15:54:11 +01:00
task-with-summary:
deps: [dependend-task-1, dependend-task-2]
2019-02-24 15:37:02 +01:00
summary: |
2019-02-24 15:54:11 +01:00
summary of task-with-summary - line 1
2019-02-24 11:22:14 +01:00
line 2
line 3
2019-02-24 09:53:49 +01:00
cmds:
2019-02-24 15:54:11 +01:00
- echo 'task-with-summary was executed'
2019-02-24 14:37:14 +01:00
- echo 'another command'
- exit 0
2019-02-24 09:53:49 +01:00
2019-02-24 15:54:11 +01:00
other-task-with-summary:
summary: summary of other-task-with-summary
2019-02-24 11:01:48 +01:00
cmds:
2019-02-24 15:54:11 +01:00
- echo 'other-task-with-summary was executed'
2019-02-24 16:10:43 +01:00
dependend-task-1:
cmds:
- echo 'dependend-task-1 was executed'
2019-03-04 12:48:26 +01:00
2019-02-24 16:10:43 +01:00
dependend-task-2:
cmds:
- echo 'dependend-task-2 was executed'