mirror of
https://github.com/go-task/task.git
synced 2025-02-07 13:41:53 +02:00
16 lines
167 B
YAML
16 lines
167 B
YAML
|
version: '3'
|
||
|
|
||
|
tasks:
|
||
|
task-1:
|
||
|
cmds:
|
||
|
- task: task-3
|
||
|
|
||
|
task-2:
|
||
|
deps:
|
||
|
- task-3
|
||
|
|
||
|
task-3:
|
||
|
internal: true
|
||
|
cmds:
|
||
|
- echo "Hello, World!"
|