super-graph/.wtc.yaml

13 lines
337 B
YAML
Raw Permalink Normal View History

2019-10-25 07:39:59 +02:00
no_trace: false
debounce: 300 # if rule has no debounce, this will be used instead
ignore: \.git/
trig: [start, run] # will run on start
rules:
- name: start
- name: run
match: \.go$
ignore: web|examples|docs|_test\.go$
2020-04-16 06:26:32 +02:00
command: go run main.go serv
2019-10-25 07:39:59 +02:00
- name: test
match: _test\.go$
command: go test -cover {PKG}