ipld-eth-db-validator/Makefile

22 lines
400 B
Makefile
Raw Normal View History

BIN = $(GOPATH)/bin
BASE = $(GOPATH)/src/$(PACKAGE)
PKGS = go list ./... | grep -v "^vendor/"
# Tools
.PHONY: integrationtest
integrationtest: | $(GOOSE)
go vet ./...
go fmt ./...
go run github.com/onsi/ginkgo/ginkgo -r test/ -v
2022-05-06 11:21:11 +00:00
.PHONY: test
test: | $(GOOSE)
go vet ./...
go fmt ./...
go run github.com/onsi/ginkgo/ginkgo -r validator_test/ -v
2022-05-17 04:29:23 +00:00
build:
go fmt ./...
GO111MODULE=on go build