chore: mention make lint in PR template and contributing doc (#12703)

This commit is contained in:
Paweł Żak 2023-02-17 21:00:42 +01:00 committed by GitHub
parent 75cbda186c
commit 1e04e3822c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,8 @@
# Required for all PRs
<!-- Before opening a pull request you should run the following checks to make sure the CI will pass.
<!-- Before opening a pull request you should run the following checks locally to make sure the CI will pass.
make lint
make check
make check-deps
make test

View File

@ -66,11 +66,12 @@ Telegraf uses Go modules. Assuming you can already build the project, run this i
1. `go get github.com/[dependency]/[new-package]`
**Unit Tests:**
**Before opening a PR:**
Before opening a pull request you should run the following checks to make sure the CI will pass.
Before opening a pull request you should run the following checks locally to make sure the CI will pass.
```shell
make lint
make check
make check-deps
make test