Skip to content

Latest commit

 

History

History
88 lines (53 loc) · 2.59 KB

CONTRIBUTING.md

File metadata and controls

88 lines (53 loc) · 2.59 KB

🚀 Contribution Guidelines

Thank you for your interest in contributing to CrossTL! By contributing, you help improve the project and make it more robust and useful for everyone. 🎉

How to Contribute

1. 🍴 Fork the Repository

Start by forking the crosstl repository on GitHub to your own account.

2. 🖥️ Clone Your Fork

Clone your forked repository to your local machine:

git clone https://github.com/your-username/crosstl.git
cd crosstl

3. 🌿 Create a Branch

Create a new branch for your changes. Use a descriptive name for your branch:

git checkout -b feature-name

4. 🔧 Make Changes

Make your changes to the codebase. Follow the project’s coding style and guidelines. Ensure that your changes do not break existing functionality.

5. 🧪 Write Unit Tests

Ensure that your code is reliable by writing unit tests:

  • Add tests for any new functionality or changes.
  • Make sure your code passes all existing and new tests.
  • You can run the test suite locally using:
pytest tests/

6. 💾 Commit Your Changes

Commit your changes with a clear and concise commit message:

git add .
git commit -m "Description of your changes"

7. 🚀 Push to GitHub

Push your changes to your forked repository on GitHub:

git push origin feature-name

8. 🔄 Open a Pull Request

Open a pull request on the original repository. Provide a detailed description of your changes, why they are necessary, and any additional information that may be useful for the reviewers.

Contribution Pipeline

🐛 Issue Tracking

We use GitHub Issues to track bugs, enhancements, and tasks. Feel free to open a new issue if you find a bug or have a feature request. Please be sure to:

  • Provide a clear description.
  • Include steps to reproduce the issue if it’s a bug.
  • Suggest a solution if possible.

👀 Code Review

All contributions go through a code review process. The maintainers will review your pull request and provide feedback. Be prepared to make additional changes based on the feedback.

✅ Continuous Integration (CI)

We use Continuous Integration (CI) to run automated tests on all pull requests. Ensure that your code passes all the tests before submitting your pull request.

🔗 Merging

Once your pull request has been reviewed and approved, it will be merged into the main branch.

🙏 Thank You ✨

Thank you for your interest in contributing to Crosstl! Your contributions make a significant impact on the project and the community. Every contribution, big or small, helps us improve! 💖