mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
35 lines
808 B
YAML
35 lines
808 B
YAML
version: '2'
|
|
|
|
includes:
|
|
included: ./included
|
|
included_taskfile: ./Taskfile2.yml
|
|
included_without_dir:
|
|
taskfile: ./module1
|
|
included_taskfile_without_dir:
|
|
taskfile: ./module1/Taskfile.yml
|
|
included_with_dir:
|
|
taskfile: ./module2
|
|
dir: ./module2
|
|
included_taskfile_with_dir:
|
|
taskfile: ./module2/Taskfile.yml
|
|
dir: ./module2
|
|
os_related:
|
|
taskfile: ./module3/CustomTaskfile.yml
|
|
dir: ./module3
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- task: gen
|
|
- task: included:gen
|
|
- task: included_taskfile:gen
|
|
- task: included_without_dir:gen_file
|
|
- task: included_taskfile_without_dir:gen_dir
|
|
- task: included_with_dir:gen_file
|
|
- task: included_taskfile_with_dir:gen_dir
|
|
- task: os_related:gen
|
|
|
|
gen:
|
|
cmds:
|
|
- echo main > main.txt
|