mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
43357293cd
* does this fix it? * does this fix it?
23 lines
738 B
YAML
23 lines
738 B
YAML
language: go
|
|
go_import_path: github.com/prysmaticlabs/prysm
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
go: 1.11.x
|
|
env:
|
|
- lint
|
|
install:
|
|
- go get ${gobuild_args} -t ./...
|
|
script:
|
|
- go get ${gobuild_args} github.com/alecthomas/gometalinter && gometalinter --install && gometalinter ./...
|
|
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
|