mirror of
https://github.com/kataras/iris.git
synced 2025-12-18 02:17:05 +00:00
16 lines
421 B
YAML
16 lines
421 B
YAML
language: go
|
|
os:
|
|
- linux
|
|
- osx
|
|
go:
|
|
- go1.8
|
|
go_import_path: github.com/kataras/iris
|
|
install:
|
|
- go get ./...
|
|
# install test dependencies
|
|
# - go get golang.org/x/tools/cmd/cover
|
|
# - go get -v github.com/axw/gocov
|
|
# - go install github.com/axw/gocov/gocov
|
|
script:
|
|
# - gocov test | gocov report # the result is invalid because it tests the vendor too, which are removed to reduce the dl size.
|
|
- go test -v ./... |