aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/DreamItGetIT/statuscake/makefile
blob: 946f6d993e5d7026f4c329342481e952284f5e64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
.PHONY: default lint test

default: lint test

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

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