You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@echo "Installing golangci-lint"&& go get github.com/golangci/golangci-lint/cmd/golangci-lint && go install github.com/golangci/golangci-lint/cmd/golangci-lint
10
+
@echo "Installing zbusc"&& go install github.com/threefoldtech/zbus/zbusc
11
+
go mod tidy
12
+
13
+
lint:
14
+
@echo "Running $@"
15
+
@${GOPATH}/bin/golangci-lint run -c ../.golangci.yml
16
+
17
+
check: test
18
+
test: lint build
19
+
go test -vet=off -v $(shell go list ./... | grep -Ev "stubs|network" )
20
+
21
+
testrace: lint build
22
+
go test -vet=off -v $(shell go list ./... | grep -Ev "stubs|network" )
0 commit comments