Codebase list golang-github-go-piv-piv-go / debian/1.8.0-2 Makefile
debian/1.8.0-2

Tree @debian/1.8.0-2 (Download .tar.gz)

Makefile @debian/1.8.0-2raw · history · blame

.PHONY: test
test: lint
	go test -v ./...

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

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