wormhole-explorer/event-watcher/Makefile

9 lines
134 B
Makefile

build:
CGO_ENABLED=0 GOOS=linux go build -o "./bin/service" cmd/service/main.go
test:
go test -v -cover ./...
.PHONY: build test