1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-08 06:32:27 +08:00
Files
wechat/.travis.yml
ripple_k a57ad46b7a ci build
2018-04-09 15:06:39 +08:00

22 lines
334 B
YAML

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