iris/.travis.yml
Gerasimos (Makis) Maropoulos 1c791932db travis: go_import_path with version suffix
Former-commit-id: 6fbaca2031783443b8d4a924d68878993708091e
2019-10-26 19:00:22 +03:00

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