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

go:
  - 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