File: Makefile

package info (click to toggle)
golang-github-mozillazg-go-httpheader 0.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: makefile: 15
file content (15 lines) | stat: -rw-r--r-- 259 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
help:
	@echo "test             run test"
	@echo "lint             run lint"

.PHONY: test
test:
	go test -race -v -cover -coverprofile cover.out
	go tool cover -html=cover.out -o cover.html

.PHONY: lint
lint:
	gofmt -s -w .
	goimports -w .
	golint .
	go vet