Create CONTRIBUTING.md

This commit is contained in:
Temirkhan Myrzamadi 2020-02-03 18:07:44 +06:00 committed by GitHub
parent 409ade3547
commit 347ea9320f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,10 @@
# Contributing
Before contributing, please read our [code of conduct](https://github.com/teloxide/teloxide/blob/dev/CODE_OF_CONDUCT.md) and [the code style](https://github.com/teloxide/teloxide/blob/dev/CODE_STYLE.md).
To change the source code, fork this repository and work inside your own branch. Then send us a PR and wait for the CI to check everything. However, you'd better check changes first locally:
```
cargo clippy --all --all-features --all-targets
cargo test --all
cargo doc --open
```