wormhole-explorer/event-watcher/Makefile

9 lines
134 B
Makefile
Raw Normal View History

2023-08-03 13:55:43 -07:00
build:
CGO_ENABLED=0 GOOS=linux go build -o "./bin/service" cmd/service/main.go
test:
go test -v -cover ./...
.PHONY: build test