1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-01-10 00:43:36 +02:00
pocketbase/Makefile

13 lines
239 B
Makefile
Raw Normal View History

lint:
golangci-lint run -c ./golangci.yml ./...
test:
2022-10-30 10:28:14 +02:00
go test ./... -v --cover
jsvmdocs:
go run ./plugins/jsvm/internal/docs/docs.go
test-report:
2022-10-30 10:28:14 +02:00
go test ./... -v --cover -coverprofile=coverage.out
go tool cover -html=coverage.out