This repository has been archived on 2021-02-22. You can view files and clone it, but cannot push or open issues or pull requests.
hcaptcha/Makefile
jolheiser a3520ee4fa
Initial Commit
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2020-08-24 15:50:09 -05:00

13 lines
122 B
Makefile

GO ?= go
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: test
test:
$(GO) test -race ./...
.PHONY: vet
vet:
$(GO) vet ./...