iris/.travis.yml

35 lines
628 B
YAML
Raw Normal View History

sudo: false
language: go
os:
- linux
- osx
go:
2020-08-17 20:53:17 +02:00
# We support the latest two major Go versions:
# https://golang.org/doc/devel/release.html
- 1.15.x
2021-02-19 07:05:13 +01:00
- 1.16.x
# - master
go_import_path: github.com/kataras/iris/v12
env:
global:
- GO111MODULE=on
2020-08-17 20:53:17 +02:00
addons:
hosts:
- mydomain.com
- www.mydomain.com
- myotherdomain.com
- mymy.com
- testdomain.com
- testdomain1.com
- testdomain2.com
install:
- go get ./...
script:
- go test -count=1 -v -cover -race ./...
after_script:
# examples
- cd ./_examples
2021-02-19 07:49:15 +01:00
- go test -v -mod=mod -cover -race ./...
- cd ../