Skip to content
This repository has been archived by the owner on Mar 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #30 from KeisukeToyota/feature/travis-ci
Browse files Browse the repository at this point in the history
travis ci
  • Loading branch information
ksk001100 authored Jan 30, 2019
2 parents e0f208d + 9b06149 commit 703b9ed
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: go
go:
- "1.11"
install:
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/lint/golint
- go get -u github.com/goreleaser/goreleaser

script:
- go vet ./...
- diff <(goimports -d $(find . -type f -name '*.go' -not -path "./vendor/*")) <(printf "")
- diff <(go list ./... | xargs -L1 golint -set_exit_status) <(printf "")

after_success:
- goreleaser
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
![](https://img.shields.io/github/issues/KeisukeToyota/toyotter2.svg)
![](https://img.shields.io/github/forks/KeisukeToyota/toyotter2.svg)
![](https://img.shields.io/github/license/KeisukeToyota/toyotter2.svg)
[![Build Status](https://travis-ci.org/KeisukeToyota/toyotter2.svg?branch=master)](https://travis-ci.org/KeisukeToyota/toyotter2)
[![Go Report Card](https://goreportcard.com/badge/github.com/KeisukeToyota/toyotter2)](https://goreportcard.com/report/github.com/KeisukeToyota/toyotter2)

CUI based Twitter client made with Golang
Expand Down

0 comments on commit 703b9ed

Please sign in to comment.