Mounting CI

master
Andrey Ivanov 2020-12-07 20:32:10 +03:00 committed by Andrey Ivanov
parent 47eae56dab
commit 3418f5087f
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
lint: install-lint-deps
golangci-lint run ./previewer/... ./internal/...
golangci-lint run ./pkg/...
fast-test:
go test -race -count 100 -timeout 30s -short ./internal/...
go test -race -count 100 -timeout 30s -short ./pkg/...
slow-test:
go test -race -timeout 150s -run Slow ./internal/...
go test -race -timeout 150s -run Slow ./pkg/...
install-lint-deps:
rm -rf $(shell go env GOPATH)/bin/golangci-lint