Files
pocket-id-pocket-id/backend/Makefile

12 lines
211 B
Makefile
Raw Normal View History

.PHONY: test
test:
go test -tags exclude_frontend,unit ./...
.PHONY: test-race
test-race:
CGO_ENABLED=1 go test -race -tags exclude_frontend,unit ./...
.PHONY: lint
lint:
golangci-lint run -c .golangci.yml