mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
5c2edeebec
Former-commit-id: cf687301a86aab2ae8e8b198f4425234687ef4e3
22 lines
432 B
YAML
22 lines
432 B
YAML
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
- "go1.9"
|
|
- "go1.10"
|
|
go_import_path: github.com/kataras/iris
|
|
install:
|
|
- go get ./... # for iris-contrib/httpexpect, kataras/golog
|
|
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 ./... |