2015-07-28 22:16:16 +00:00
|
|
|
language: go
|
2018-07-20 21:31:26 +00:00
|
|
|
go_import_path: github.com/prysmaticlabs/prysm
|
2015-07-28 22:16:16 +00:00
|
|
|
sudo: false
|
2018-01-13 22:31:28 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2018-10-13 05:23:41 +00:00
|
|
|
go: 1.11.x
|
2018-01-13 22:31:28 +00:00
|
|
|
env:
|
|
|
|
- lint
|
|
|
|
script:
|
2019-02-05 15:46:32 +00:00
|
|
|
- go get github.com/alecthomas/gometalinter && gometalinter --install && gometalinter ./...
|
|
|
|
email: false
|
2018-09-10 02:50:04 +00:00
|
|
|
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
|
2018-09-16 16:27:02 +00:00
|
|
|
- ./send.sh failure $WEBHOOK_URL
|