Merge branch 'internal-tasks' of https://github.com/pd93/task into pd93-internal-tasks

This commit is contained in:
Andrey Nering
2022-09-17 12:59:19 -03:00
13 changed files with 190 additions and 7 deletions

16
testdata/includes_internal/Taskfile.yml vendored Normal file
View 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

View File

@@ -0,0 +1,7 @@
version: '3'
tasks:
task-3:
cmds:
- echo "Hello, World!"

16
testdata/internal_task/Taskfile.yml vendored Normal file
View 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!"