Skip to content

Commit

Permalink
📝❓⬆️ Update installation part and implementation of CodeCov
Browse files Browse the repository at this point in the history
 Issues related:
 	-> #19

 On branch devel
 Changes to be committed:
	modified:   .travis.yml
	modified:   README.md
  • Loading branch information
ChacaS0 committed Feb 28, 2018
1 parent 9e2b5c3 commit f05448b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ env:

before_install:
- go get -u github.com/golang/dep

after_success:
- bash <(curl -s https://codecov.io/bash)
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,32 @@
* [git]("https://git-scm.com/downloads")
* [go (golang)]("https://golang.org/")
#### Command
First choose if you want to add permanantly ``GOBIN`` to your ``PATH``
##### ``GOBIN`` temporarily in ``PATH``
```bash
export GOBIN=/bin
```
or
```bash
export GOBIN=/usr/bin
```

Then
```bash
go get -v -u github.com/ChacaS0/tempest
```
##### ``GOBIN`` permanently in ``PATH``
Add this line to ``/etc/environment``:
```bash
GOBIN=<PATH_OF_YOUR_CHOICE>
PATH=$PATH:$GOBIN
```

Then
```bash
go get -v -u github.com/ChacaS0/tempest
```
*This command installs TEMPest*

## Initialization
### Command line ``init``
It is very easy to use.
Expand Down

0 comments on commit f05448b

Please sign in to comment.