1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-03 10:17:03 +00:00

General Improvements (UseRouter per Party, fix AutoTLS). Read HISTORY.md

relative to: https://github.com/kataras/iris/issues/1577 and https://github.com/kataras/iris/issues/1578
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-08-12 07:20:07 +03:00
parent da029d6f37
commit 0761bc35ee
15 changed files with 639 additions and 120 deletions

View File

@@ -1,9 +1,13 @@
sudo: false
language: go
os:
- linux
- osx
go:
- 1.14.x
- 1.15.x
- master
go_import_path: github.com/kataras/iris/v12
env:
global:
@@ -11,14 +15,10 @@ env:
install:
- go get ./...
script:
- go test -count=1 -v -cover ./...
- go test -count=1 -v -cover -race ./...
after_script:
# examples
- cd ./_examples
- go get ./...
- go test -count=1 -v -cover ./...
- go test -count=1 -v -cover -race ./...
- cd ../
# make sure that the _benchmarks code is working
- cd ./_benchmarks
- go get ./...
- go test -count=1 -v -cover ./...