mirror of
https://github.com/go-task/task.git
synced 2026-06-22 20:25:50 +00:00
25 lines
528 B
YAML
25 lines
528 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'
|