Every help is welcome! See how to contribute below
- Fork this project on Github
- Make a clone of the created fork repository:
git clone https://github.com/youruser/dustdata.git
- Create a branch to commit your feature or fix:
git checkout -b my-branch
- And make your changes!
If are you creating a new feature, make sure to create a unit tests to it. To make a unit tests, add the following code in the same file of you feature:
// Unit tests
#[cfg(test)]
mod your_feature_tests {
#[test]
fn testing_feature() {
...
}
}
See more about unit tests here
We suggest that commit messages follow the conventional commit.
See about conventional commit here
- Commit your changes
- Push your branch to your fork:
git push origin my-branch
- Go to Pull Requests from the root repository and create a Pull Request with your commit(s)