mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2024-11-22 15:56:45 +01:00
17 lines
292 B
Makefile
17 lines
292 B
Makefile
BIN := cic-chain-events
|
|
|
|
.PHONY: build
|
|
|
|
build:
|
|
CGO_ENABLED=1 go build -v -ldflags="-s -w" -o ${BIN} cmd/*.go
|
|
|
|
run:
|
|
CGO_ENABLED=1 go run -ldflags="-s -w" cmd/*.go
|
|
|
|
mod:
|
|
go mod tidy
|
|
go mod verify
|
|
|
|
test:
|
|
source .env.test
|
|
go test -v -covermode atomic -coverprofile=covprofile ./internal/...
|