mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +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!"
|