1
0
mirror of https://github.com/go-task/task.git synced 2025-12-24 00:21:41 +02:00
Files
task/testdata/summary/Taskfile.yml
2024-11-07 13:25:59 -03:00

27 lines
566 B
YAML

version: '3'
tasks:
task-with-summary:
deps: [dependent-task-1, dependent-task-2]
summary: |
summary of task-with-summary - line 1
line 2
line 3
cmds:
- echo 'task-with-summary was executed'
- echo 'another command'
- exit 0
other-task-with-summary:
summary: summary of other-task-with-summary
cmds:
- echo 'other-task-with-summary was executed'
dependent-task-1:
cmds:
- echo 'dependent-task-1 was executed'
dependent-task-2:
cmds:
- echo 'dependent-task-2 was executed'