mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
c7b8e0661b
Former-commit-id: 6b8a55df68a9e89caaa95775215919b0b4d581c4
25 lines
563 B
YAML
25 lines
563 B
YAML
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
# - go1.8 works of course but
|
|
# we must encourage users to update to the latest go version,
|
|
# so examples are running on go 1.9 mode.
|
|
- go1.9
|
|
# - tip
|
|
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 ./... |