Get started contributing
Detailed docs on contributing to Julia packages can be found here.
Code and docs
To start hacking code or writing docs, simply:
julia> using Pkg; Pkg.develop("Memento")
- Make your changes.
- Test your changes with
julia --compiled-modules=no -e 'using Pkg; Pkg.test("Memento"; coverage=true)'
- Check that your changes haven't reduced the test coverage. From the root Memento package folder run
julia -e 'using Coverage; Coverage.get_summary(process_folder())'
. - Make a pull request to Memento and share your changes with the rest of the community.
Bugs, features, and requests
Feel free to file issues when you encounter bugs, think of interesting features you'd like to see, or when there are important changes not yet included in a release and you'd like us to tag a new version.
Submitting your contributions
By contributing code to Memento, you are agreeing to release your work under the MIT License.
We love contributions in the form of pull requests! Assuming you've been working in a repo checked out as above, this should be easy to do. For a detailed walkthrough, check here, otherwise:
- Navigate to Memento.jl and create a fork.
git remote add origin https://github.com/user/Memento.jl.git
git push origin master
- Submit your changes as a pull request!
For pull requests to be accepted we require that the changes:
- Pass on travis and appveyor
- Maintain 100% test coverage