mirror of
https://github.com/go-task/task.git
synced 2025-12-25 07:59:28 +01:00
33 lines
768 B
YAML
33 lines
768 B
YAML
version: '3'
|
|
|
|
includes:
|
|
included: ./included
|
|
included_taskfile: ./Taskfile2.yml
|
|
included_without_dir:
|
|
taskfile: ./module1
|
|
included_taskfile_without_dir:
|
|
taskfile: ./module2/Taskfile.yml
|
|
included_with_dir:
|
|
taskfile: ./module3
|
|
dir: ./module3
|
|
included_taskfile_with_dir:
|
|
taskfile: ./module4/Taskfile.yml
|
|
dir: ./module4
|
|
included_os: ./Taskfile_{{OS}}.yml
|
|
|
|
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: included_os:gen
|
|
|
|
gen:
|
|
cmds:
|
|
- echo main > main.txt
|