chore: mention make lint in PR template and contributing doc (#12703)
This commit is contained in:
parent
75cbda186c
commit
1e04e3822c
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue