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

sudo: false

go:
  - 1.2
  - 1.3
  - 1.4
  - 1.5
  - 1.6
  - 1.7
  - 1.8

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