Skip to content

Instantly share code, notes, and snippets.

@albertobravi
Last active March 12, 2017 14:34
Show Gist options
  • Save albertobravi/c199deb7112ab6b730c98a40e3dbfe73 to your computer and use it in GitHub Desktop.
Save albertobravi/c199deb7112ab6b730c98a40e3dbfe73 to your computer and use it in GitHub Desktop.
Travis simple configuration for Go application
language: go
sudo: false
go:
- 1.8
install:
- export GOPATH="${TRAVIS_BUILD_DIR}"
- cd $GOPATH
- go get -v ./...
script:
- go test -v ./...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment