1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00
task/testdata/status/Taskfile.yml
2023-04-05 22:18:58 -03:00

26 lines
331 B
YAML

version: '3'
tasks:
gen-foo:
cmds:
- touch foo.txt
sources:
- ./foo.txt
status:
- test 1 = 0
gen-bar:
cmds:
- touch bar.txt
sources:
- ./bar.txt
status:
- test 1 = 1
gen-silent-baz:
silent: true
cmds:
- touch baz.txt
sources:
- ./baz.txt