forked from digitalocean/godo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs for contributing, versioning and docs.
- Loading branch information
1 parent
66c450f
commit 4df5360
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 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 | ||
``` | ||
|
||
## Running tests | ||
|
||
When working on code in this repository, tests can be run via: | ||
|
||
```sh | ||
go test . | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters