Skip to content

Commit

Permalink
Add Travis CI config file (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbyczkowski authored and jeromegn committed Jun 7, 2017
1 parent e25480f commit 0699bf4
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 @@
language: go

go:
- 1.7.x
- 1.x

install: make setup
script:
# check compilation on supported targets
- GOOS=linux GOARCH=amd64 make binaries
- GOOS=windows GOARCH=amd64 make binaries
- GOOS=darwin GOARCH=amd64 make binaries
- GOOS=linux GOARCH=arm make binaries
- GOOS=linux GOARCH=386 make binaries
# run tests
- make ci

0 comments on commit 0699bf4

Please sign in to comment.