Skip to content

Instantly share code, notes, and snippets.

@joshk
Forked from mrb/doc.md
Created July 26, 2012 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshk/3182077 to your computer and use it in GitHub Desktop.
Save joshk/3182077 to your computer and use it in GitHub Desktop.
Building Go on Travis with test deps

Go on Travis

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.

language: go
install:
- go get github.com/bmizerany/assert
- go get github.com/mrb/hob
script: go test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment