mirror of
https://github.com/go-task/task.git
synced 2026-02-25 04:33:43 +01:00
23 lines
375 B
YAML
23 lines
375 B
YAML
|
|
version: '3'
|
||
|
|
|
||
|
|
silent: true
|
||
|
|
|
||
|
|
tasks:
|
||
|
|
hello:
|
||
|
|
cmds:
|
||
|
|
- echo "Hello from include"
|
||
|
|
|
||
|
|
hello-silent:
|
||
|
|
silent: true
|
||
|
|
cmds:
|
||
|
|
- echo "Hello from include silent task"
|
||
|
|
|
||
|
|
hello-silent-not-set:
|
||
|
|
cmds:
|
||
|
|
- echo "Hello from include silent not set task"
|
||
|
|
|
||
|
|
hello-silent-set-false:
|
||
|
|
silent: false
|
||
|
|
cmds:
|
||
|
|
- echo "Hello from include silent false task"
|