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

10 lines
183 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
test-report:
2022-10-30 10:28:14 +02:00
go test ./... -v --cover -coverprofile=coverage.out
go tool cover -html=coverage.out