Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.76 KB

CONTRIBUTING.md

File metadata and controls

37 lines (29 loc) · 1.76 KB

Contributing

  1. File an issue. The issue will be used to discuss the bug or feature and should be created before opening an MR.

    Best to even wait on actually developing it as to make sure that we're all aligned on what you're trying to contribute, as to avoid having to reject your hard work and code.

In case you also want to help resolve it by contributing to the code base you would continue as follows:

  1. Install Rust and configure correctly (https://www.rust-lang.org/tools/install).

  2. Clone the repo: git clone https://github.com/plabayo/rora

  3. Change into the checked out source: cd riora

  4. Fork the repo.

  5. Set your fork as a remote: git remote add fork git@github.com:GITHUB_USERNAME/rora.git

  6. Make changes, commit to your fork. Please add a short summary and a detailed commit message for each commit.

    Feel free to make as many commits as you want in your branch, prior to making your MR ready for review, please clean up the git history from your branch by rebasing and squashing relevant commits together, with the final commits being minimal in number and detailed in their description.

  7. To minimize friction, consider setting Allow edits from maintainers on the PR, which will enable project committers and automation to update your PR.

  8. A maintainer will review the pull request and make comments.

    Prefer adding additional commits over amending and force-pushing since it can be difficult to follow code reviews when the commit history changes.

    Commits will be squashed when they're merged.

Testing

All tests can be run locally against the latest Rust version (or whichever supported Rust version you're using on your development machine):

just qa