mirror of
https://github.com/rancher/os.git
synced 2025-08-02 15:31:15 +00:00
15 lines
342 B
YAML
15 lines
342 B
YAML
language: go
|
|
sudo: false
|
|
go:
|
|
- 1.3
|
|
install:
|
|
- export GOPATH=${TRAVIS_BUILD_DIR}/Godeps/_workspace:$GOPATH
|
|
- export PATH=${TRAVIS_BUILD_DIR}/Godeps/_workspace/bin:$PATH
|
|
- go get -t -v ./...
|
|
- go get code.google.com/p/go.tools/cmd/cover
|
|
script:
|
|
- script/validate-dco
|
|
- script/validate-gofmt
|
|
- go test -v -short ./...
|
|
- script/generate-coverage
|