Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
32 lines (32 sloc)
772 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: go | |
sudo: false | |
go: | |
- 1.4.3 | |
- 1.5.3 | |
- 1.6 | |
- tip | |
before_install: | |
- go get github.com/axw/gocov/gocov | |
- go get github.com/mattn/goveralls | |
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi | |
install: | |
- make install | |
script: | |
- make travis | |
notifications: | |
email: false | |
before_deploy: | |
- make release | |
deploy: | |
provider: releases | |
api_key: | |
secure: aPoUmzlkPs5L8BHrEowO6PfypK8pe1+MZR8Pf3WWYT6MBmHsL0SCB4FW7TvGkHKFqJX/5M8cD7qCg2sgJS40nO9sk9RiQBEBY76MzXFVnvPRqVy+0PsHxY8TuFLz43gxyUXyz/WKbsFx7o+nuteZctzytTEReHQ21q7fCXGCXbw= | |
file: | |
- release/ghkeys-linux-amd64 | |
- release/ghkeys-linux-386 | |
- release/ghkeys-linux-arm | |
skip_cleanup: true | |
on: | |
repo: conortm/ghkeys | |
tags: true | |
go: 1.6 |