From 353ad49a7b241739b5716b3b15729f12f678a74f Mon Sep 17 00:00:00 2001 From: fomalhaut Date: Fri, 3 May 2024 22:04:18 +0900 Subject: [PATCH] update: commands in Makefile to be the same as commands on workflows. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e0882871..040d5df7 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,15 @@ all: deps build test .PHONY: deps deps: - CGO_CFLAGS_ALLOW=-Xpreprocessor go get ./... + CGO_CFLAGS_ALLOW=-Xpreprocessor go get -v -t -d ./... .PHONY: build build: - CGO_CFLAGS_ALLOW=-Xpreprocessor go build ./vips + CGO_CFLAGS_ALLOW=-Xpreprocessor go build -v ./vips .PHONY: test test: - CGO_CFLAGS_ALLOW=-Xpreprocessor go test -v ./... + CGO_CFLAGS_ALLOW=-Xpreprocessor go test -v -coverprofile=profile.cov ./... .PHONY: clean clean: