File: Makefile

package info (click to toggle)
golang-github-go-piv-piv-go 1.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, experimental, forky, sid, trixie
  • size: 256 kB
  • sloc: python: 37; makefile: 12
file content (11 lines) | stat: -rw-r--r-- 136 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
.PHONY: test
test: lint
	go test -v ./...

.PHONY: lint
lint:
	golint -set_exit_status ./...

.PHONY: build
build: lint
	go build ./...