We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d576530 commit 61b7fc0Copy full SHA for 61b7fc0
.travis.yml
@@ -0,0 +1,9 @@
1
+language: go
2
+go:
3
+- 1.3
4
+- 1.4
5
+- tip
6
+install:
7
+- make get-deps
8
+script:
9
+- make all test
Makefile
@@ -32,3 +32,10 @@ release: dist
32
tar -cvzf docker-gen-linux-armhf-$(TAG).tar.gz -C dist/linux/armhf docker-gen
33
tar -cvzf docker-gen-darwin-amd64-$(TAG).tar.gz -C dist/darwin/amd64 docker-gen
34
tar -cvzf docker-gen-darwin-i386-$(TAG).tar.gz -C dist/darwin/i386 docker-gen
35
+
36
+get-deps:
37
+ go get github.com/robfig/glock
38
+ glock sync -n < GLOCKFILE
39
40
+test:
41
+ go test
0 commit comments