protoc-gen-go-micro/.travis.yml

18 lines
488 B
YAML
Raw Normal View History

2016-12-12 21:23:47 +03:00
language: go
2017-04-01 10:09:19 +03:00
go: 1.8.x
2016-12-13 19:37:26 +03:00
install:
2017-04-01 10:09:19 +03:00
- go get github.com/Masterminds/glide
- wget https://raw.githubusercontent.com/grpc-ecosystem/grpc-gateway/master/.travis/install-protoc.sh && chmod +x install-protoc.sh && ./install-protoc.sh 3.2.0
2017-03-16 18:16:45 +03:00
- go get -u github.com/golang/protobuf/protoc-gen-go
2017-12-25 11:17:09 +03:00
- go get -u github.com/alecthomas/gometalinter
- gometalinter --install
2016-12-12 21:23:47 +03:00
script:
- make install
- make test
2017-12-25 11:17:09 +03:00
- make lint
2016-12-12 21:23:47 +03:00
cache:
directories:
- $HOME/local
env:
global:
- "PATH=$PATH:$HOME/local/bin"