Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 790 Bytes

CONTRIBUTING.md

File metadata and controls

43 lines (26 loc) · 790 Bytes

Contributing

By participating to this project, you agree to abide our code of conduct.

Setup your machine

gm is written in Go.

Prerequisites:

Clone gm anywhere:

$ git clone [email protected]:kordamp/gm.git

Install the build and lint dependencies:

$ go install github.com/fzipp/gocyclo
$ go get ./...

A good way of making sure everything is all right is running the test suite:

$ go test -v ./...

Test your change

You can create a branch for your changes and try to build from the source as you go:

$ go build gm.go

Submit a pull request

Push your branch to your gm fork and open a pull request against the development branch.