1
0
mirror of https://github.com/go-task/task.git synced 2025-01-26 05:27:15 +02:00
task/testdata/force/Taskfile.yml

20 lines
295 B
YAML
Raw Normal View History

version: "3"
tasks:
task-with-dep:
status: [ test true ]
deps: [ indirect ]
cmds:
- echo "direct"
task-with-subtask:
status: [ test true ]
cmds:
- task: indirect
- echo "direct"
indirect:
status: [ test true ]
cmds:
- echo "indirect"