iris/.travis.yml
Gerasimos (Makis) Maropoulos ccafe67c80 nothing important here
Former-commit-id: e6c4ade12d085cb8fa4989b15fa446b75ee114b2
2019-07-15 09:58:05 +03:00

29 lines
545 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 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 ./...