mirror of
https://github.com/go-task/task.git
synced 2025-08-10 22:42:19 +02:00
Write first test for including a Taskfile
This commit is contained in:
1
testdata/includes/.gitignore
vendored
Normal file
1
testdata/includes/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*.txt
|
14
testdata/includes/Taskfile.yml
vendored
Normal file
14
testdata/includes/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
version: '2'
|
||||
|
||||
includes:
|
||||
included: ./included
|
||||
|
||||
tasks:
|
||||
default:
|
||||
cmds:
|
||||
- task: gen
|
||||
- task: included:gen
|
||||
|
||||
gen:
|
||||
cmds:
|
||||
- echo main > main.txt
|
6
testdata/includes/included/Taskfile.yml
vendored
Normal file
6
testdata/includes/included/Taskfile.yml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
version: '2'
|
||||
|
||||
tasks:
|
||||
gen:
|
||||
cmds:
|
||||
- echo included > included.txt
|
Reference in New Issue
Block a user