1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-08 22:52:27 +08:00
Files
wechat/.travis.yml
silenceper 22bfe7209d Update .travis.yml
add go 1.11.x
2018-09-12 00:13:23 +08:00

22 lines
335 B
YAML

language: go
go:
- 1.11.x
- 1.10.x
- 1.9.x
- 1.8.x
- 1.7.x
services:
- memcached
- redis-server
before_script:
- GO_FILES=$(find . -iname '*.go' -type f | grep -v /vendor/)
- go get github.com/golang/lint/golint
script:
- go test -v -race ./...
- go vet ./...
- golint -set_exit_status $(go list ./...)