mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
345e7280a1
Former-commit-id: 765b43602655fad7f525ca7a5f7f297a6167d075
21 lines
400 B
YAML
21 lines
400 B
YAML
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
- go1.8
|
|
- tip
|
|
go_import_path: github.com/kataras/iris
|
|
install:
|
|
- go get ./... # for iris-contrib/httpexpect and kataras/golog
|
|
script:
|
|
- go test -v -cover ./...
|
|
after_script:
|
|
# examples
|
|
- cd ./_examples
|
|
- go get ./...
|
|
- go test -v -cover ./...
|
|
# typescript examples
|
|
- cd ../../typescript/_examples
|
|
- go get ./...
|
|
- go test -v -cover ./... |