aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-lintpack/lintpack/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/go-lintpack/lintpack/Makefile')
-rw-r--r--vendor/github.com/go-lintpack/lintpack/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/github.com/go-lintpack/lintpack/Makefile b/vendor/github.com/go-lintpack/lintpack/Makefile
new file mode 100644
index 000000000..63f21d2f9
--- /dev/null
+++ b/vendor/github.com/go-lintpack/lintpack/Makefile
@@ -0,0 +1,14 @@
+.PHONY: test ci
+
+%: # stubs to get makefile param for `test-checker` command
+ @: # see: https://stackoverflow.com/a/6273809/433041
+
+build:
+ go build cmd/lintpack/build.go cmd/lintpack/main.go
+
+test:
+ go test -v -count=1 ./...
+
+ci:
+ go get -t -v ./...
+ go test -v -count=1 ./...