mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
e24f1948eb
Former-commit-id: 02feee620655d8f4580cf1916c2d4dacaae03346
29 lines
545 B
YAML
29 lines
545 B
YAML
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
- 1.13.x
|
|
go_import_path: github.com/kataras/iris
|
|
env:
|
|
global:
|
|
- GO111MODULE=on
|
|
install:
|
|
- go get ./...
|
|
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 ./... |