mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
bc45e6444c
Remove the StaticCacheDuration unused package-level variable from context/context.go and /core/router/api_builder.go it should be removed a year ago, now all the cache funcs and middlewares accept their own options | Remove duplicated header keys that are used on both context/context.go and core/router/fs.go by exporting context's one. Former-commit-id: 2a5c840d26b32144d2b5b3173a1e4bb4324cecba
27 lines
568 B
YAML
27 lines
568 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 ./...
|
|
- cd ../../
|
|
# make sure that the _benchmarks code is working
|
|
- cd ./_benchmarks
|
|
- go get ./...
|
|
- go test -v -cover ./... |