mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-28 07:22:20 +00:00
19 lines
304 B
YAML
Executable File
19 lines
304 B
YAML
Executable File
language: go
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.5
|
|
- 1.6
|
|
|
|
before_install:
|
|
- ./install_protoc.sh
|
|
- export PATH=$PATH:$HOME/soft/protobuf
|
|
|
|
install:
|
|
- go get github.com/stretchr/testify
|
|
- go get github.com/gogo/protobuf/protoc-gen-gogo
|
|
- go get github.com/golang/protobuf/protoc-gen-go
|
|
|
|
script:
|
|
- make test
|