5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 13:42:30 +00:00
matterbridge/vendor/github.com/labstack/echo/v4/.travis.yml

22 lines
360 B
YAML
Raw Normal View History

2021-03-20 21:40:23 +00:00
arch:
- amd64
- ppc64le
language: go
go:
2020-09-04 21:29:13 +00:00
- 1.14.x
- 1.15.x
- tip
env:
- GO111MODULE=on
install:
- go get -v golang.org/x/lint/golint
script:
- golint -set_exit_status ./...
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
matrix:
allow_failures:
- go: tip