1
0
mirror of https://github.com/go-task/task.git synced 2024-12-14 10:52:43 +02:00
task/testdata/summary/Taskfile.yml

27 lines
566 B
YAML
Raw Normal View History

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