File: Makefile

package info (click to toggle)
golang-github-ema-qdisc 0.0~git20200603.62d0308-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 92 kB
  • sloc: makefile: 11
file content (11 lines) | stat: -rw-r--r-- 186 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
build:
	go fmt
	go build
	go vet
	staticcheck
	#golint -set_exit_status
	go test -v -race -tags=integration

cover:
	go test -coverprofile=coverage.out
	go tool cover -html=coverage.out