The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/.travis.yml

24 lines
711 B

language: go
go:
- master
install:
- export GOPATH=$HOME/gopath
- cd $HOME/gopath/src
- cd github.com/harmony-one/harmony
- go get -t -v ./...
- go get -u golang.org/x/lint/golint
- go get gopkg.in/check.v1
- ./scripts/travis_checker.sh
- go build -v ./...
script:
- ./scripts/travis_checker.sh
notifications:
slack: harmonyone:gggCd1QQopsQAW8JYgBWiH7M
after_success:
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh success $WEBHOOK_URL
after_failure:
- wget https://raw.githubusercontent.com/DiscordHooks/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh failure $WEBHOOK_URL