mirror of
https://github.com/prometheus/alertmanager
synced 2025-01-09 07:19:42 +00:00
9ec25d84c5
Adding two basic (fuzz-) tests for Utils.Filter.parseMatcher. Including tests in Travis runs. Adding make target "test" and "dev-server".
10 lines
140 B
Makefile
10 lines
140 B
Makefile
ELM_FILES := $(shell find src -iname *.elm)
|
|
format: $(ELM_FILES)
|
|
elm-format --yes $?
|
|
|
|
test:
|
|
elm-test
|
|
|
|
dev-server:
|
|
go run main.go --debug
|