mirror of
https://github.com/go-task/task.git
synced 2025-03-05 15:05:42 +02:00
24 lines
531 B
YAML
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'
|