iris/.travis.yml
Gerasimos (Makis) Maropoulos 3093d65363 version 12.1.5
Former-commit-id: cda69f08955cb0d594e98bf26197ee573cbba4b2
2020-02-02 16:29:06 +02:00

29 lines
585 B
YAML

language: go
os:
- linux
- osx
go:
- 1.13.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 ./...