Files
Atay-Makhzan/vendor/go.jolheiser.com/hcaptcha/Makefile
T

13 lines
122 B
Makefile
Raw Normal View History

2020-10-02 22:37:53 -05:00
GO ?= go
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: test
test:
$(GO) test -race ./...
.PHONY: vet
vet:
$(GO) vet ./...