1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-12-01 17:21:31 +02:00
Files
pocketbase/Makefile

10 lines
183 B
Makefile
Raw Normal View History

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