We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0de7b1 commit ca0f645Copy full SHA for ca0f645
Makefile
@@ -70,7 +70,9 @@ clean:
70
lint: lint-go lint-imports lint-yaml lint-shell
71
72
lint-go:
73
- cd $(MAKEFILE_DIR) && golangci-lint run $(VERBOSE_FLAG_LONG) ./...
+ cd $(MAKEFILE_DIR) && GOOS=linux golangci-lint run $(VERBOSE_FLAG_LONG) ./... && \
74
+ GOOS=windows golangci-lint run $(VERBOSE_FLAG_LONG) ./... && \
75
+ GOOS=freebsd golangci-lint run $(VERBOSE_FLAG_LONG) ./...
76
77
lint-imports:
78
cd $(MAKEFILE_DIR) && ./hack/lint-imports.sh
0 commit comments