mirror of
https://github.com/go-task/task.git
synced 2025-12-25 07:59:28 +01:00
Merge branch 'internal-tasks' of https://github.com/pd93/task into pd93-internal-tasks
This commit is contained in:
16
testdata/includes_internal/Taskfile.yml
vendored
Normal file
16
testdata/includes_internal/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3'
|
||||
|
||||
includes:
|
||||
included:
|
||||
taskfile: Taskfile2.yml
|
||||
internal: true
|
||||
|
||||
tasks:
|
||||
|
||||
task-1:
|
||||
cmds:
|
||||
- task: included:default
|
||||
|
||||
task-2:
|
||||
deps:
|
||||
- included:default
|
||||
7
testdata/includes_internal/Taskfile2.yml
vendored
Normal file
7
testdata/includes_internal/Taskfile2.yml
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
version: '3'
|
||||
|
||||
tasks:
|
||||
|
||||
task-3:
|
||||
cmds:
|
||||
- echo "Hello, World!"
|
||||
16
testdata/internal_task/Taskfile.yml
vendored
Normal file
16
testdata/internal_task/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
version: '3'
|
||||
|
||||
tasks:
|
||||
|
||||
task-1:
|
||||
cmds:
|
||||
- task: task-3
|
||||
|
||||
task-2:
|
||||
deps:
|
||||
- task-3
|
||||
|
||||
task-3:
|
||||
internal: true
|
||||
cmds:
|
||||
- echo "Hello, World!"
|
||||
Reference in New Issue
Block a user