1
0
mirror of https://github.com/go-task/task.git synced 2025-03-05 15:05:42 +02:00
task/testdata/details/Taskfile.yml
2019-02-24 11:09:55 +01:00

24 lines
531 B
YAML

version: 2
tasks:
task-with-details:
deps: [dependend-task]
details: |
This is a very long detailed description
with multiple lines
cmds:
- echo 'task-with-details was executed'
task-without-details:
deps: [dependend-task]
cmds:
- echo 'task-without-details was executed'
dependend-task:
cmds:
- echo 'dependend-task was executed'
other-task-with-details:
details: details of other-task-with-details
cmds:
- echo 'other-task-with-details was executed'