mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-06 03:13:48 +02:00
927 B
927 B
Contributing
By participating to this project, you agree to abide our code of conduct.
Setup your machine
releaser
is written in Go.
Prerequisites are:
- Build:
make
- Go 1.7+
Clone releaser
from source:
$ git clone https://github.com/goreleaser/releaser.git
$ cd releaser
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:
$ go 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 releaser
fork and open a pull request against the
master branch.