Travis-CI is trying to figure out the best way for Go projects with test dependencies to run on their platform. The included .yml file here shows that simply running a series of "go get" commands for the external dependencies required by test files in the script
line works.
Created
July 26, 2012 13:39
-
-
Save mrb/3182075 to your computer and use it in GitHub Desktop.
Building Go on Travis with test deps
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: go | |
script: go get github.com/bmizerany/assert && go get github.com/mrb/hob && go test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment