vendor/github.com/mattn/go-isatty/.travis.yml
changeset 251 1c52a0eeb952
parent 242 2a9ec03fe5a1
--- a/vendor/github.com/mattn/go-isatty/.travis.yml	Wed Sep 18 19:17:42 2019 +0200
+++ b/vendor/github.com/mattn/go-isatty/.travis.yml	Sun Feb 16 18:54:01 2020 +0100
@@ -1,13 +1,14 @@
 language: go
+sudo: false
 go:
+  - 1.13.x
   - tip
 
-os:
-  - linux
-  - osx
+before_install:
+  - go get -t -v ./...
 
-before_install:
-  - go get github.com/mattn/goveralls
-  - go get golang.org/x/tools/cmd/cover
 script:
-  - $HOME/gopath/bin/goveralls -repotoken 3gHdORO5k5ziZcWMBxnd9LrMZaJs8m9x5
+  - ./go.test.sh
+
+after_success:
+  - bash <(curl -s https://codecov.io/bash)