Skip to content

Latest commit

 

History

History
73 lines (45 loc) · 2 KB

workflow.mdx

File metadata and controls

73 lines (45 loc) · 2 KB
title
Contributing Workflow

Contributing

By participating to this project, you agree to abide our code of conduct.

Setup your machine

golangci-lint is written in Go.

Prerequisites:

Fork and clone golangci-lint repository.

A good way of making sure everything is all right is running the following:

make build
./golangci-lint run -v

Test your change

When you are satisfied with the changes, we suggest you run:

$ make test

Which runs all the linters and tests.

Create or update parameters for docs

Add your new or updated parameters to .golangci.example.yml so they will be shown in the docs

Submit a pull request

Push your branch to your golangci-lint fork and open a pull request against the master branch.

Pull request checks

First, please, accept CLA - cla assistant will make a comment on the pull request about it.

Also, we run a few checks in CI by using GitHub actions, you can see them here.

New releases

First, see our versioning policy.

To make a new release create a tag vx.y.z. Don't forget to add zero patch version for a new minor release, e.g. v1.99.0. A GitHub action workflow will start building and publishing release after that.

After making a release you need to update:

  1. GitHub action config by running:
make assets/github-action-config.json
  1. The latest version in documentation on our website:
make expand_website_templates