go-exif/.travis.yml
Dustin Oprea e46688a494 .travis.yml: Bugfix for no module support in CI
Tip of dependency is broken and it was affecting us:

https://github.com/go-errors/errors/issues/27

- We also disabled 1.10 and 1.11 due to lack of support in dependencies now that we're being recognized as a module.
2020-06-01 01:33:14 -04:00

19 lines
418 B
YAML

language: go
go:
- master
- stable
- "1.13"
- "1.12"
env:
- GO111MODULE=on
install:
- go get -t ./...
- go get github.com/mattn/goveralls
script:
# Don't test recursively, so we stay within v1/legacy.
- go test -v github.com/dsoprea/go-exif
- go test -v github.com/dsoprea/go-exif/exif-read-tool
# Coverage is based on v2.
- cd v2
- EXIF_MODULE_ROOT_PATH="$(pwd)" goveralls -v -service=travis-ci