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

sudo: false

go:
  - 1.2
  - 1.3
  - 1.4
  - 1.5
  - 1.6
  - tip

before_install:
  - go get golang.org/x/tools/cmd/cover
  - go get github.com/mattn/goveralls

script:
  - go test -v -covermode=count -coverprofile=coverage.out
  - $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out