eth-statediff-service/Makefile
2022-09-21 11:55:17 -04:00

13 lines
196 B
Makefile

## Build docker image
.PHONY: docker-build
docker-build:
docker build -t cerc-io/eth-statediff-service .
.PHONY: test
test: | $(GOOSE)
go test -p 1 ./pkg/... -v
build:
go fmt ./...
go build