mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 10:41:03 +01:00
c5392ede6a
Former-commit-id: 52888ae3fd0da9e5b98e095c665a1a538381ddef
24 lines
458 B
YAML
24 lines
458 B
YAML
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
- 1.14.x
|
|
go_import_path: github.com/kataras/iris/v12
|
|
env:
|
|
global:
|
|
- GO111MODULE=on
|
|
install:
|
|
- go get ./...
|
|
script:
|
|
- go test -count=1 -v -cover ./...
|
|
after_script:
|
|
# examples
|
|
- cd ./_examples
|
|
- go get ./...
|
|
- go test -count=1 -v -cover ./...
|
|
- cd ../
|
|
# make sure that the _benchmarks code is working
|
|
- cd ./_benchmarks
|
|
- go get ./...
|
|
- go test -count=1 -v -cover ./... |