File: Makefile

package info (click to toggle)
golang-github-nbrownus-go-metrics-prometheus 0.0~git20210712.974a626-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 148 kB
  • sloc: sh: 11; makefile: 9
file content (10 lines) | stat: -rw-r--r-- 88 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
vet:
	go vet -v ./...

test:
	go test -v ./...

fmt:
	go fmt ./...

.PHONY: test vet fmt