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

24 lines
531 B
YAML
Raw Normal View History

2019-02-24 09:53:49 +01:00
version: 2
tasks:
task-with-details:
2019-02-24 11:01:48 +01:00
deps: [dependend-task]
2019-02-24 09:53:49 +01:00
details: |
This is a very long detailed description
with multiple lines
cmds:
2019-02-24 11:01:48 +01:00
- echo 'task-with-details was executed'
2019-02-24 09:53:49 +01:00
task-without-details:
2019-02-24 11:01:48 +01:00
deps: [dependend-task]
2019-02-24 09:53:49 +01:00
cmds:
2019-02-24 11:01:48 +01:00
- echo 'task-without-details was executed'
dependend-task:
cmds:
- echo 'dependend-task was executed'
other-task-with-details:
2019-02-24 11:09:55 +01:00
details: details of other-task-with-details
2019-02-24 11:01:48 +01:00
cmds:
- echo 'other-task-with-details was executed'