1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-08 14:42:26 +08:00
Files
wechat/.travis.yml
2018-02-23 16:19:08 +08:00

21 lines
323 B
YAML

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