- 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!