Skip to content

Commit 0699bf4

Browse files
mbyczkowskijeromegn
authored andcommitted
Add Travis CI config file (#5)
1 parent e25480f commit 0699bf4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: go
2+
3+
go:
4+
- 1.7.x
5+
- 1.x
6+
7+
install: make setup
8+
script:
9+
# check compilation on supported targets
10+
- GOOS=linux GOARCH=amd64 make binaries
11+
- GOOS=windows GOARCH=amd64 make binaries
12+
- GOOS=darwin GOARCH=amd64 make binaries
13+
- GOOS=linux GOARCH=arm make binaries
14+
- GOOS=linux GOARCH=386 make binaries
15+
# run tests
16+
- make ci

0 commit comments

Comments
 (0)