Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 661 Bytes

CONTRIBUTING.md

File metadata and controls

13 lines (11 loc) · 661 Bytes

Contributing

  • Fork, then clone the repo: git clone [email protected]:your-username/kafka_ex.git
  • Create a feature branch: git checkout -b feature_branch
  • Make your changes
  • Make sure the unit tests pass: mix test --no-start
  • Make sure the integration tests pass: mix test --only integration
  • Make sure the consumer group tests pass: mix test --only consumer_group
  • Make sure dialyzer returns clean: mix dialyze --unmatched-returns --error-handling --race-conditions --underspecs
  • Push your feature branch: git push origin feature_branch
  • Submit a pull request with your feature branch

Thanks!