aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: cd49a148b28b03562226b5b61b78e54edfcac935 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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