blob: cd49a148b28b03562226b5b61b78e54edfcac935 (
plain) (
tree)
|
|
before_install: sudo apt-get install libgmp3-dev
install:
- go get code.google.com/p/go.tools/cmd/goimports
- go get github.com/golang/lint/golint
- go get code.google.com/p/go.tools/cmd/vet
language: go
go:
- 1.3
after_script:
# - gofmt -l -w .
# - goimports -l -w .
# - golint .
# - go vet ./...
# - go test -race ./...
- ./gocoverage.sh
script:
- curl https://raw.github.com/ethereum/go-ethereum/master/travis.sh | sh
|