mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-15 21:48:13 +03:00
12 lines
211 B
Makefile
12 lines
211 B
Makefile
|
|
.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
|