Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/content/docs/welcome/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,20 @@ include:
Note that you [can only reference components in the same GitLab instance as your project](https://docs.gitlab.com/ci/components/#use-a-component)
### Buildkite
Buildkite offers a [plugin](https://buildkite.com/resources/plugins/buildkite-plugins/golangci-lint-buildkite-plugin/) for running golangci-lint in Buildkite pipelines.
It utilizes the official [Docker image](https://hub.docker.com/r/golangci/golangci-lint) by default, but can be set to use a binary if available on the agent.
The plugin will annotate builds with results, providing an easily readable summary of fixes.
```yaml {filename=".pipeline.yml"}
plugins:
- golangci-lint#v1.0.0:
config: .golangci.yml
```
### Other CI
Here is the other way to install golangci-lint:
Expand Down
Loading