diff --git a/.travis.yml b/.travis.yml index ba1f8a53..cbc0c85f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: go go: - - "1.8.x" - "1.9.x" - "1.10.x" - "1.11.x" @@ -28,5 +27,5 @@ script: - yarn test:verbose - gulp build - cd .. - - go vet $(go list ./... | grep -v '/vendor/') - - go test -v -race $(go list ./... | grep -v '/vendor/') + - go vet ./... + - go test -v -race ./... diff --git a/README.md b/README.md index 637205c7..aa9028b5 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ There is a few different ways of getting it: - [Other versions](https://github.com/khlieng/dispatch/releases) ### 2. Go -This requires a [Go environment](http://golang.org/doc/install), version 1.8 or greater. +This requires a [Go environment](http://golang.org/doc/install), version 1.9 or greater. Fetch, compile and run dispatch: ```bash