aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/tomasen/realip/.travis.yml
blob: 9c900093ca575ae32eb05bdcd5a9595b4442db0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: go

go:
  - 1.4
  - 1.5
  - tip

before_install:
  # lint
  - go get github.com/golang/lint/golint

  # code complexity
  - go get github.com/on99/gocyclo

  # test
  - go get github.com/smartystreets/goconvey/convey

script:
  - golint ./...
  - go vet ./...
  - gocyclo -skip-godeps=true -top 10 -over 10 . # over 10 is bad code