Andrew Starr-Bochicchio 444fcd12c9 Update vendored godo.
2018-11-22 21:31:12 -05:00

25 lines
477 B
Markdown

# Contributing
If you submit a pull request, please keep the following guidelines in mind:
1. Code should be `go fmt` compliant.
2. Types, structs and funcs should be documented.
3. Tests pass.
## Getting set up
Assuming your `$GOPATH` is set up according to your desires, run:
```sh
go get github.com/digitalocean/godo
go get -u github.com/stretchr/testify/assert
```
## Running tests
When working on code in this repository, tests can be run via:
```sh
go test .
```