Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.2 KB

CONTRIBUTING.md

File metadata and controls

34 lines (27 loc) · 1.2 KB

How to contribute to ArnoldiMethod.jl

Did you find a bug?

Open an issue on GitHub and share a minimal, reproducible example.

How can I contribute?

If you're interested in numerical linear algebra and want to improve this package, make sure you skim through some literature:

If you're unfamiliar with Julia, the documentation is an excellent starting point:

A recommended workflow to contribute is as follows:

  1. Fork the package on GitHub;
  2. Open Julia's REPL and hit ] to enter the package manager mode;
  3. Run
    (v1.6) pkg> dev git git@github.com:YOURUSERNAME/ArnoldiMethod.jl.git
  4. Run the tests locally to make sure things work:
    (v1.6) pkg> test ArnoldiMethod
  5. Make changes to the code;
  6. Push the changes to your forked repository;
  7. Open a pull request.