mirror of
https://github.com/go-task/task.git
synced 2026-06-26 14:16:16 +00:00
Add support for multi-level includes and cyclic include detection
This commit is contained in:
9
testdata/includes_multi_level/one/Taskfile.yml
vendored
Normal file
9
testdata/includes_multi_level/one/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
version: '3'
|
||||
|
||||
includes:
|
||||
'two': ./two/Taskfile.yml
|
||||
|
||||
tasks:
|
||||
level2:
|
||||
cmds:
|
||||
- echo "hello level 2"
|
||||
6
testdata/includes_multi_level/one/two/Taskfile.yml
vendored
Normal file
6
testdata/includes_multi_level/one/two/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
version: '3'
|
||||
|
||||
tasks:
|
||||
level3:
|
||||
cmds:
|
||||
- echo "hello level 3"
|
||||
Reference in New Issue
Block a user