https://github.com/google/cayley
Raw File
Tip revision: 7fa20fc306f9cc8451af35285a4139155cb9bf34 authored by Barak Michener on 25 April 2015, 23:13:08 UTC
Merge pull request #237 from jf87/master
Tip revision: 7fa20fc
.travis.yml
language: go

sudo: false

go:
  - 1.3
  - 1.4
  - tip

install:
  # Install our tracked dependencies
  - go get github.com/tools/godep
  - godep restore

  # Google App Engine dependencies
  - cd ..
  - wget https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.18.zip
  - unzip -q go_appengine_sdk_linux_amd64-1.9.18.zip
  - export PATH=$PATH:$PWD/go_appengine/
  - cd cayley

script:
  - go test -v ./...
  - goapp test -v ./graph/gaedatastore

back to top