File: makefile

package info (click to toggle)
golang-github-dreamitgetit-statuscake 0.0~git20220607.de57c59-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 308 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