93919427f8
* use grafana-plugin-model dependency that uses go modules * use grafana-plugin-model with updated hashicorp/go-plugin * use grafana-plugin-model with re-compiled protos * test using protoc-gen-go v1.2.0 tag * use grafana-plugin-model with re-compiled protos * chore: fix deprecation warning for lint * use latest grafana-plugin-model Fixes #19454
12 lines
135 B
Makefile
12 lines
135 B
Makefile
#!/usr/bin/make -f
|
|
|
|
test:
|
|
go test -timeout=1s -short ./...
|
|
|
|
compile:
|
|
go build ./...
|
|
|
|
build: test compile
|
|
|
|
.PHONY: test compile build
|