iris/.travis.yml
2018-02-25 12:59:09 +02:00

22 lines
432 B
YAML

language: go
os:
- linux
- osx
go:
- "go1.9"
- "go1.10"
go_import_path: github.com/kataras/iris
install:
- go get ./... # for iris-contrib/httpexpect, kataras/golog
script:
- go test -v -cover ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go test -v -cover ./...
- cd ../
# typescript examples
- cd ./typescript/_examples
- go get ./...
- go test -v -cover ./...