diff options
Diffstat (limited to 'vendor/github.com/DreamItGetIT/statuscake/makefile')
-rw-r--r-- | vendor/github.com/DreamItGetIT/statuscake/makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/github.com/DreamItGetIT/statuscake/makefile b/vendor/github.com/DreamItGetIT/statuscake/makefile new file mode 100644 index 0000000..946f6d9 --- /dev/null +++ b/vendor/github.com/DreamItGetIT/statuscake/makefile | |||
@@ -0,0 +1,11 @@ | |||
1 | .PHONY: default lint test | ||
2 | |||
3 | default: lint test | ||
4 | |||
5 | lint: | ||
6 | @golint ./... | ||
7 | @go vet ./... | ||
8 | |||
9 | test: | ||
10 | go test ${GOTEST_ARGS} ./... | ||
11 | |||