Skip to content
This repository has been archived by the owner on Dec 3, 2019. It is now read-only.

Latest commit

 

History

History
20 lines (17 loc) · 912 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (17 loc) · 912 Bytes

Contributing

As a guideline, please follow this process when contributing:

  1. Fork the repository.
  2. Create a branch from master (git checkout -b branch-name master).
  3. Make the relevant code changes.
  4. Use the various quality checks provided:
    • Run the tests with make test.
    • Generate a coverage report with make coverage, then open coverage/index.html.
    • Fix code style issues with make lint, but be sure to stage changes first.
    • Run the integration tests with make integration. There should be one passing test, and one failing test. This demonstrates Phony's output.
  5. Squash commits if necessary (git rebase -i master).
  6. Submit a pull request to the master branch.