Drop go 1.8 support

This commit is contained in:
Ken-Håvard Lieng 2018-08-31 04:06:29 +02:00
parent 47bc78b80a
commit 1de1d1473d
2 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,6 @@
language: go language: go
go: go:
- "1.8.x"
- "1.9.x" - "1.9.x"
- "1.10.x" - "1.10.x"
- "1.11.x" - "1.11.x"
@ -28,5 +27,5 @@ script:
- yarn test:verbose - yarn test:verbose
- gulp build - gulp build
- cd .. - cd ..
- go vet $(go list ./... | grep -v '/vendor/') - go vet ./...
- go test -v -race $(go list ./... | grep -v '/vendor/') - go test -v -race ./...

View File

@ -21,7 +21,7 @@ There is a few different ways of getting it:
- [Other versions](https://github.com/khlieng/dispatch/releases) - [Other versions](https://github.com/khlieng/dispatch/releases)
### 2. Go ### 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: Fetch, compile and run dispatch:
```bash ```bash