iris/.travis.yml
Gerasimos (Makis) Maropoulos 6876f94e67 HISTORY.md additions
Former-commit-id: d5537f598fb34c669d8d7e6c019eee6f3ce269e8
2020-04-03 22:12:41 +03:00

29 lines
585 B
YAML

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