summaryrefslogtreecommitdiff
path: root/vendor/github.com/dsoprea/go-jpeg-image-structure/.travis.yml
blob: 4c79875ed3b77ea6e5e68c37ed447a1daae0daae (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:
  - master
  - stable
  - "1.14"
  - "1.13"
  - "1.12"
env:
  - GO111MODULE=on
install:
  - go get -t ./...
script:
# v1
  - go test -v .
# v2
  - cd v2
  - go test -v ./... -coverprofile=coverage.txt -covermode=atomic
  - cd ..
after_success:
  - cd v2
  - curl -s https://codecov.io/bash | bash