Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 498 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (23 loc) · 498 Bytes

Development

Always, always, always run go fmt ./... before committing!

Running the tests

go get golang.org/x/tools/cmd/cover

make test

See the html output of the coverage information

make test-cover

Updating dependencies

go get -u github.com/tools/godep

godep save

Linting

Perfect linting is not required, but it is helpful for new people coming to the code.

go get -u github.com/golang/lint/golint

golint ./
golint ./render