1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-27 01:33:39 +02:00
goreleaser/CONTRIBUTING.md
Carlos Alexandro Becker a8ce3bb09b
improved CONTRIBUTING.md
2017-04-21 16:20:34 -03:00

973 B

Contributing

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

Setup your machine

goreleaser is written in Go.

Prerequisites are:

Clone goreleaser from source into $GOPATH:

$ go get github.com/goreleaser/goreleaser
$ cd $GOPATH/src/github.com/goreleaser/goreleaser

Install the build and lint dependencies:

$ make setup

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

$ make test

Test your change

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

$ make build

When you are satisfied with the changes, we suggest you run:

$ make ci

Which runs all the linters and tests.

Submit a pull request

Push your branch to your goreleaser fork and open a pull request against the master branch.