Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Latest commit

 

History

History
56 lines (37 loc) · 991 Bytes

CONTRIBUTING.md

File metadata and controls

56 lines (37 loc) · 991 Bytes

Contributing

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

Setup your machine

antibody is written in Go.

Prerequisites are:

Clone antibody from source into $GOPATH:

$ mkdir -p $GOPATH/src/github.com/getantibody
$ cd $_
$ git clone git@github.com:getantibody/antibody.git
$ cd antibody

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 antibody fork and open a pull request against the master branch.