mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-05 05:34:25 -05:00
* Migrate Prysm repo to Offchain Labs organization ahead of Pectra upgrade v6 * Replace prysmaticlabs with OffchainLabs on general markdowns * Update mock * Gazelle and add mock.go to excluded generated mock file
25 lines
773 B
YAML
25 lines
773 B
YAML
language: go
|
|
go_import_path: github.com/OffchainLabs/prysm
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: xenial
|
|
go: 1.12.x
|
|
env:
|
|
- lint
|
|
install:
|
|
- go get ${gobuild_args} -t ./...
|
|
- go get ${gobuild_args} github.com/golangci/golangci-lint/cmd/golangci-lint
|
|
script:
|
|
- golangci-lint run --skip-dirs ./proto
|
|
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
|