prysm-pulse/.travis.yml

30 lines
900 B
YAML
Raw Normal View History

language: go
go_import_path: github.com/prysmaticlabs/prysm
sudo: false
matrix:
include:
- os: linux
go: 1.10.x
env:
- lint
script:
-
2018-07-29 01:18:56 +00:00
go get github.com/alecthomas/gometalinter && gometalinter --install && gometalinter ./... --deadline=10m --exclude=client/internal/client_helper.go
2018-08-07 03:58:21 +00:00
- os: linux
env:
- coverage
script:
- ./scripts/coverage.sh
2018-08-07 03:58:21 +00:00
- bash <(curl -s https://codecov.io/bash)
notifications:
email: false
after_success:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh success $WEBHOOK_URL
after_failure:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh failure $WEBHOOK_URL