https://github.com/google/cayley
Revision 3a54ab3d15512653c7a7a6a094706a01ce906b23 authored by Oren on 23 July 2016, 07:15:01 UTC, committed by Oren on 23 July 2016, 07:15:01 UTC
1 parent 347978d
Raw File
Tip revision: 3a54ab3d15512653c7a7a6a094706a01ce906b23 authored by Oren on 23 July 2016, 07:15:01 UTC
Update examples/README.md
Tip revision: 3a54ab3
.travis.yml
language: go

sudo: false

go:
  - 1.5
  - 1.6
  - tip

install:
  # Install our tracked dependencies
  - go get -t ./...
  - 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.23.zip
  - unzip -q go_appengine_sdk_linux_amd64-1.9.23.zip
  - export PATH=$PATH:$PWD/go_appengine/
  - $PWD/go_appengine/goapp get github.com/stretchr/testify/require
  - cd cayley

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

matrix:
  allow_failures:
    - go: tip
back to top