iris/.travis.yml
Gerasimos (Makis) Maropoulos 5b4cc9a0a2 hmm
Former-commit-id: db17245e0d732a2ffe4091c05b750201070f8c30
2019-07-15 10:07:07 +03:00

30 lines
589 B
YAML

language: go
os:
- linux
- osx
go:
- 1.12.x
go_import_path: github.com/kataras/iris
env:
global:
- GO111MODULE=on
install:
- go get ./...
script:
- go test -v -cover ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go get github.com/casbin/casbin@v2.0.0
- go test -v -cover ./...
- cd ../
# typescript examples
- cd ./typescript/_examples
- go get ./...
- go test -v -cover ./...
- cd ../../
# make sure that the _benchmarks code is working
- cd ./_benchmarks
- go get ./...
- go test -v -cover ./...