1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-04 12:52:27 +08:00
Files
wechat/.travis.yml
2018-09-12 14:05:31 +08:00

21 lines
325 B
YAML

language: go
go:
- 1.11.x
- 1.10.x
- 1.9.x
- 1.8.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 ./...)