2022-07-09 22:17:41 +08:00
|
|
|
lint:
|
|
|
|
golangci-lint run -c ./golangci.yml ./...
|
|
|
|
|
|
|
|
test:
|
2022-10-30 16:28:14 +08:00
|
|
|
go test ./... -v --cover
|
2022-07-09 22:17:41 +08:00
|
|
|
|
2023-07-11 23:09:55 +08:00
|
|
|
jsvmdocs:
|
|
|
|
go run ./plugins/jsvm/internal/docs/docs.go
|
|
|
|
|
2022-07-09 22:17:41 +08:00
|
|
|
test-report:
|
2022-10-30 16:28:14 +08:00
|
|
|
go test ./... -v --cover -coverprofile=coverage.out
|
2022-07-09 22:17:41 +08:00
|
|
|
go tool cover -html=coverage.out
|