Created
February 8, 2016 14:45
-
-
Save masahide/077349fef4b7f7aab767 to your computer and use it in GitHub Desktop.
golangの静的解析,カバレッジ解析,バイナリリリースをCircleCIで簡単に整える ref: http://qiita.com/yamasaki-masahide/items/4f7db9ba3a15411dd6b3
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
deployment: | |
release: | |
tag: /v.*/ |
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
repo_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxx |
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
go get -u github.com/alecthomas/gometalinter | |
gometalinter --install | |
gometalinter ./... |
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
git tag -a v1.0.2 -m 'version 1.0.2' | |
push origin v1.0.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment