1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-26 22:37:08 +00:00
Files
kararas_iris/.travis.yml
2017-08-07 06:04:35 +03:00

22 lines
438 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, kataras/golog, boltdb/bolt(sessiondb, optional)
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 ./...