Travis: use make commands instead of goclean.sh
Now that we have a Makefile with all tasks previously executed in goclean.sh, we no longer need to use that file.
This commit is contained in:
parent
3a5d9f84b0
commit
8d9d0b9001
2 changed files with 6 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
btcwallet
|
btcwallet
|
||||||
vendor
|
vendor
|
||||||
.idea
|
.idea
|
||||||
|
coverage.txt
|
||||||
|
|
|
@ -4,10 +4,11 @@ go:
|
||||||
sudo: false
|
sudo: false
|
||||||
install:
|
install:
|
||||||
- GO111MODULE=on go install -v ./...
|
- GO111MODULE=on go install -v ./...
|
||||||
- GO111MODULE=off go get -v golang.org/x/tools/cmd/cover
|
|
||||||
- GO111MODULE=off go get -v golang.org/x/lint/golint
|
|
||||||
- GO111MODULE=off go get -v github.com/davecgh/go-spew/spew
|
|
||||||
script:
|
script:
|
||||||
- export PATH=$PATH:$HOME/gopath/bin
|
- export PATH=$PATH:$HOME/gopath/bin
|
||||||
- export GO111MODULE=on
|
- export GO111MODULE=on
|
||||||
- ./goclean.sh
|
- make fmt
|
||||||
|
- make lint
|
||||||
|
- make unit-race
|
||||||
|
- make unit-cover
|
||||||
|
- make goveralls
|
||||||
|
|
Loading…
Reference in a new issue