Skip to content

Commit

Permalink
Uncomment out staticcheck and gosimple dependencies in circle.yml file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Yu committed Oct 9, 2017
1 parent 4eaca88 commit 94e63ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies:
pre:
- bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/1.0.22/binscripts/gvm-installer)
- source "$HOME/.gvm/scripts/gvm" && gvm install go$GO_VERSION -B --name=stable && gvm use stable --default
# - go get honnef.co/go/tools/cmd/staticcheck
# - go get honnef.co/go/tools/cmd/gosimple
- go get honnef.co/go/tools/cmd/staticcheck
- go get honnef.co/go/tools/cmd/gosimple
- go get -u github.com/golang/lint/golint
- docker run -d -t -p 4567:4567 dlsniper/kinesalite:1.8.0
override:
Expand All @@ -25,7 +25,7 @@ test:
pre:
- cd "$GOPATH/src/$IMPORT_PATH" && go vet $(glide nv)
- cd "$GOPATH/src/$IMPORT_PATH" && golint -set_exit_status $(glide nv)
# - cd "$GOPATH/src/$IMPORT_PATH" && gosimple $(glide nv)
- cd "$GOPATH/src/$IMPORT_PATH" && gosimple $(glide nv)

override:
- cd $GOPATH/src/$IMPORT_PATH && go test -v -race -cover $(glide nv)

0 comments on commit 94e63ce

Please sign in to comment.