diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-07-04 11:12:55 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-07-04 15:05:30 +0200 |
| commit | c7d7f10bdff703e4a3c0414e8a33d4e45c91eb35 (patch) | |
| tree | 0dff0ee1f98dbfa3ad8776112053a450d176592b /vendor/github.com/go-lintpack/lintpack/Makefile | |
| parent | 9573094ce235bd9afe88f5da27a47dd6bcc1e13b (diff) | |
go.mod: vendor golangci-lint
Diffstat (limited to 'vendor/github.com/go-lintpack/lintpack/Makefile')
| -rw-r--r-- | vendor/github.com/go-lintpack/lintpack/Makefile | 14 |
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 ./... |
