mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-10-30 05:20:05 -04:00
Aaron Lindsay
830a6064c7
I'm getting errors when attempting to build with any older version: golang.org/x/term # golang.org/x/term ../../../golang.org/x/term/term_unix_linux.go:9:7: ioctlReadTermios redeclared in this block previous declaration at ../../../golang.org/x/term/term_unix_aix.go:9:26 ../../../golang.org/x/term/term_unix_linux.go:10:7: ioctlWriteTermios redeclared in this block previous declaration at ../../../golang.org/x/term/term_unix_aix.go:10:27
21 lines
392 B
YAML
21 lines
392 B
YAML
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
go:
|
|
- 1.12.x
|
|
- 1.13.x
|
|
- master
|
|
|
|
before_install:
|
|
# Fetch/build coverage reporting tools
|
|
- go get github.com/mattn/goveralls
|
|
- go install github.com/mattn/goveralls
|
|
|
|
script:
|
|
- go test -v -covermode=count -coverprofile=coverage.out
|
|
|
|
after_script:
|
|
- $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
|