mirror of
https://github.com/prometheus-operator/prometheus-operator.git
synced 2025-04-16 01:06:27 +00:00
7 lines
143 B
Makefile
7 lines
143 B
Makefile
test:
|
|
go test -v ./...
|
|
|
|
test-examples:
|
|
@for example in $(shell find examples/ -name '*.go'); do \
|
|
go build -v $$example || exit 1; \
|
|
done
|