mirror of
https://gitee.com/johng/gf
synced 2026-07-05 21:32:17 +08:00
新增go modules支持,自行管理第三方包依赖,方便开发者使用
This commit is contained in:
21
third/github.com/gorilla/websocket/.travis.yml
Normal file
21
third/github.com/gorilla/websocket/.travis.yml
Normal file
@ -0,0 +1,21 @@
|
||||
language: go
|
||||
sudo: false
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- go: 1.4
|
||||
- go: 1.5.x
|
||||
- go: 1.6.x
|
||||
- go: 1.7.x
|
||||
- go: 1.8.x
|
||||
- go: 1.9.x
|
||||
- go: 1.10.x
|
||||
- go: tip
|
||||
allow_failures:
|
||||
- go: tip
|
||||
|
||||
script:
|
||||
- go get -t -v ./...
|
||||
- diff -u <(echo -n) <(gofmt -d .)
|
||||
- go vet $(go list ./... | grep -v /vendor/)
|
||||
- go test -v -race ./...
|
||||
Reference in New Issue
Block a user