You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- go get github.com/golang/lint/golint
install:
- go get -d -v -t ./...
before_script:
- psql -c 'CREATE DATABASE travis;' -U postgres
- psql travis < ./schema.sql
script:
- go test ./...
- go vet ./...
- $HOME/gopath/bin/golint **/*.go
- LINTED=$($HOME/gopath/bin/golint **/*.go| wc -l); if [ $LINTED -gt 0 ]; then echo "golint - $LINTED statements not up to spec, please run golint and follow the suggestions." && exit 1; fi