1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00
Files
kararas_iris/.travis.yml
Gerasimos (Makis) Maropoulos 55bdb44e26 remove experimental-handlers examples, users should visit github.com/iris-contrib/middleware instead, let's not have duplications
Former-commit-id: 72754683d1bcd4325b5fcd9f57c6cb87f1d7337d
2019-07-15 16:03:19 +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 ./...