mirror of
https://github.com/dsoprea/go-exif.git
synced 2025-05-01 04:59:45 +00:00
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.
19 lines
418 B
YAML
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
|