Skip to content

Commit

Permalink
Add travis-ci configuration. (golang#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
cybrcodr authored Jun 20, 2017
1 parent e325f44 commit 1fb8fd3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
sudo: false
language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x

install:
- curl -L https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip -o /tmp/protoc.zip
- unzip /tmp/protoc.zip -d $HOME/protoc

env:
- PATH=$HOME/protoc/bin:$PATH

script:
- make all test

0 comments on commit 1fb8fd3

Please sign in to comment.