mirror of
https://github.com/go-task/task.git
synced 2025-12-24 23:49:24 +01:00
39 lines
826 B
YAML
39 lines
826 B
YAML
version: 2
|
|
tasks:
|
|
task-with-details:
|
|
deps: [dependend-task-1,dependend-task-2]
|
|
summary: |
|
|
details of task-with-details - line 1
|
|
line 2
|
|
line 3
|
|
cmds:
|
|
- echo 'task-with-details was executed'
|
|
- echo 'another command'
|
|
- exit 0
|
|
|
|
task-without-details:
|
|
deps: [dependend-task]
|
|
cmds:
|
|
- echo 'task-without-details was executed'
|
|
|
|
dependend-task-1:
|
|
cmds:
|
|
- echo 'dependend-task-1 was executed'
|
|
-
|
|
dependend-task-2:
|
|
cmds:
|
|
- echo 'dependend-task-2 was executed'
|
|
|
|
other-task-with-details:
|
|
summary: details of other-task-with-details
|
|
cmds:
|
|
- echo 'other-task-with-details was executed'
|
|
|
|
task-with-description-containing-empty-line:
|
|
summary: |
|
|
First line followed by empty line
|
|
|
|
Last Line
|
|
cmds:
|
|
- exit 0
|