File: makefile

package info (click to toggle)
golang-github-dreamitgetit-statuscake 0.0~git20201021.4e32615-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 304 kB
  • sloc: makefile: 19
file content (13 lines) | stat: -rw-r--r-- 148 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
.PHONY: default deps lint test

default: deps lint test

lint:
	@golint ./...
	@go vet ./...

test:
	go test ${GOTEST_ARGS} ./...

deps:
	dep ensure