2014-01-10 11:59:57 +02:00
|
|
|
before_install: sudo apt-get install libgmp3-dev
|
2014-11-15 04:58:09 +02:00
|
|
|
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
|
2013-12-27 12:59:00 +02:00
|
|
|
language: go
|
|
|
|
go:
|
2014-10-18 15:20:51 +03:00
|
|
|
- 1.3
|
2014-11-16 01:45:08 +02:00
|
|
|
after_script:
|
2014-11-15 06:23:31 +02:00
|
|
|
# - gofmt -l -w .
|
|
|
|
# - goimports -l -w .
|
|
|
|
# - golint .
|
|
|
|
# - go vet ./...
|
|
|
|
# - go test -race ./...
|
2014-11-15 04:58:09 +02:00
|
|
|
- ./gocoverage.sh
|
2014-11-16 01:45:08 +02:00
|
|
|
script:
|
|
|
|
- curl https://raw.github.com/ethereum/go-ethereum/master/travis.sh | sh
|