Skip to content
This repository was archived by the owner on Nov 7, 2022. It is now read-only.

Commit b8c0834

Browse files
author
Bogdan Drutu
authored
Fix minor issues in contributing md. (#469)
* Fix minor issues in contributing md. * Add instructions about make install_tools.
1 parent e87afd9 commit b8c0834

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,21 @@ information on using pull requests.
2828
Fork the repo, checkout the upstream repo to your GOPATH by:
2929

3030
```
31-
$ go get -d github.com/census-instrumentation/opencensus-service
31+
$ GO111MODULE="" go get -d github.com/census-instrumentation/opencensus-service
3232
```
3333

3434
Add your fork as an origin:
3535

3636
```
37-
cd $(go env GOPATH)/github.com/census-instrumentation/opencensus-service
37+
cd $(go env GOPATH)/src/github.com/census-instrumentation/opencensus-service
3838
git remote add fork git@github.com:YOUR_GITHUB_USERNAME/opencensus-service.git
3939
```
4040

41-
Run tests:
41+
Run tests, fmt and lint:
4242

4343
```
44-
$ go test ./...
44+
$ make install-tools # Only first time.
45+
$ make
4546
```
4647

4748
Checkout a new branch, make modifications and push the branch to your fork

0 commit comments

Comments
 (0)