1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-24 17:07:00 +02:00
pocketbase/Makefile

13 lines
240 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
jstypes:
go run ./plugins/jsvm/internal/types/types.go
test-report:
2022-10-30 10:28:14 +02:00
go test ./... -v --cover -coverprofile=coverage.out
go tool cover -html=coverage.out