go-junit-report/CONTRIBUTING.md
Joël Stemmer b61b86b9a7 Update README and contributing guidelines
- Add new section for installing go-junit-report from pre-built
  binaries.
- The instructions for installing from source have been updated to use
  `go install`, now that `go get` is being deprecated, see #124.
- Move contributing guidelines to separate `CONTRIBUTING.md` file.
2022-02-24 22:00:47 +00:00

851 B

Contributing

Bug reports

  • Before reporting a bug, have a look at the issue list to see if an issue already exists for your problem.
  • Include as much information as you can in the bug report, e.g.: the versions of go-junit-report and the Go compiler, how go-junit-report was called, what input was given to go-junit-report, what the actual output was, was the expected output was.

Pull requests

  • Before sending a pull request for new features, open an issue to discuss it.
  • Run go fmt to format your code.
  • Add test coverage and run all tests.
  • Prefer small PRs, avoid making unrelated changes in the same PR.
  • Limit the first line of the commit message to 72 characters.
  • Write commit messages in the imperative mood ("Fix bug", not "Fixed bug" or "Fixes bug") .