diff options
Diffstat (limited to 'vendor/github.com/Masterminds/sprig/v3/Makefile')
-rw-r--r-- | vendor/github.com/Masterminds/sprig/v3/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/Masterminds/sprig/v3/Makefile b/vendor/github.com/Masterminds/sprig/v3/Makefile new file mode 100644 index 000000000..78d409cde --- /dev/null +++ b/vendor/github.com/Masterminds/sprig/v3/Makefile @@ -0,0 +1,9 @@ +.PHONY: test +test: + @echo "==> Running tests" + GO111MODULE=on go test -v + +.PHONY: test-cover +test-cover: + @echo "==> Running Tests with coverage" + GO111MODULE=on go test -cover . |