Files
webhooks/.travis.yml
T
Anton Krivenko c99be7dbb8 CI fixes
2021-01-10 02:10:23 +03:00

29 lines
518 B
YAML

language: go
go:
- 1.15.6
- tip
matrix:
allow_failures:
- go: tip
notifications:
email:
recipients: dean.karn@gmail.com
on_success: change
on_failure: always
before_install:
- go get -u github.com/mattn/goveralls
before_script:
- go mod download
script:
- make lint
- make test
after_success: |
[ $TRAVIS_GO_VERSION = 1.15.6 ] &&
go test ./... -covermode=count -coverprofile=coverage.out &&
goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN