mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
19 lines
233 B
YAML
19 lines
233 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
|