MakeFile ```PACT := $(PWD)/pact/bin $(PACT): curl...
# pact-go
r
MakeFile
Copy code
PACT := $(PWD)/pact/bin
$(PACT):
	curl -sfL <https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh> | sh -s -- -b $(GOPATH)/bin

.PHONY: pact
pact: $(PACT)
	 #$(PACT) run  --no-config --deadline=10m --enable=misspell --enable=nakedret

.PHONY: consumer
consumer: pact
	@echo "--- 🔨Running Consumer Pact tests "
	go test -count=1 ./consumer/client -run 'TestClientPact'