mirror of
https://github.com/go-task/task.git
synced 2026-06-15 20:01:40 +00:00
33 lines
674 B
YAML
33 lines
674 B
YAML
version: 2
|
|
tasks:
|
|
task-with-details:
|
|
deps: [dependend-task]
|
|
details: |
|
|
details of task-with-details - line 1
|
|
line 2
|
|
line 3
|
|
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'
|
|
|
|
task-with-description-containing-empty-line:
|
|
details: |
|
|
First line followed by empty line
|
|
|
|
Last Line
|
|
cmds:
|
|
- exit 0
|