13 lines
205 B
YAML
13 lines
205 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- 1.5
|
|
install:
|
|
- true
|
|
before_script:
|
|
- go get golang.org/x/tools/cmd/vet
|
|
- go get github.com/kr/godep
|
|
script:
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- ./build/presubmit.sh
|