wormhole-explorer/core-contract-watcher/Makefile

10 lines
135 B
Makefile
Raw Normal View History

2023-06-12 12:12:02 -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