iris/.travis.yml
hiveminded 90b8c1af44 update to 8.0.5 fix django binary loader and remove logrus from vendor
Fix django binary loading was maden by @corebreaker, look the history file for more information.


Former-commit-id: 707d359ea7357baf7bd60208def813dbd9260ddb
2017-07-22 02:20:47 +03:00

33 lines
692 B
YAML

language: go
os:
- linux
- osx
go:
- go1.8
- tip
go_import_path: github.com/kataras/iris
install:
- go get ./... # for iris-contrib/httpexpect and sirupsen/logrus
script:
- go test -v -cover ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go test -v -cover ./...
# cache examples
- cd ../cache/_examples
- go get ./...
- go test -v -cover ./...
# sessions examples
- cd ../../sessions/_examples
- go get ./...
- go test -v -cover ./...
# websocket examples
- cd ../../websocket/_examples
- go get ./...
- go test -v -cover ./...
# typescript examples
- cd ../../typescript/_examples
- go get ./...
- go test -v -cover ./...