mirror of
https://github.com/pocketbase/pocketbase.git
synced 2024-11-25 01:16:21 +02:00
10 lines
183 B
Makefile
10 lines
183 B
Makefile
lint:
|
|
golangci-lint run -c ./golangci.yml ./...
|
|
|
|
test:
|
|
go test ./... -v --cover
|
|
|
|
test-report:
|
|
go test ./... -v --cover -coverprofile=coverage.out
|
|
go tool cover -html=coverage.out
|