-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
39 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,5 @@ | ||
# Code of Conduct | ||
|
||
The project team follows [Contributor Covenant v1.4](http://contributor-covenant.org/version/1/4/). | ||
Instances of abusive, harassing or otherwise unacceptable behavior may be reported by contacting | ||
the project team at feedback@octolab.org. |
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,28 @@ | ||
# Contributing workflow | ||
|
||
Read first [Go Code Review Comments](https://github.com/golang/go/wiki/CodeReviewComments). | ||
|
||
## Code quality checking | ||
|
||
```bash | ||
$ make docker-pull-tools | ||
$ make check-code-quality | ||
``` | ||
|
||
## Testing | ||
|
||
### Local | ||
|
||
```bash | ||
$ make install-deps | ||
$ make test # or test-with-coverage | ||
$ make bench | ||
``` | ||
|
||
### Docker | ||
|
||
```bash | ||
$ make docker-pull | ||
$ make complex-tests # or (complex|parallel)-tests-with-coverage | ||
$ make complex-bench | ||
``` |
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