Drop go 1.8 support
This commit is contained in:
parent
47bc78b80a
commit
1de1d1473d
|
@ -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 ./...
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue