iris/.travis.yml
hiveminded 9a0b18acbf move sessions and websocket examples, gofmt, fix misspells and experimental optimizations 🍐
Former-commit-id: cae4f94bbd404d26ab13dade02b52f81feaddf24
2017-07-22 22:57:20 +03:00

21 lines
402 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 ./...
# typescript examples
- cd ../../typescript/_examples
- go get ./...
- go test -v -cover ./...