Skip to content

Commit

Permalink
Add 'set +o pipefail'
Browse files Browse the repository at this point in the history
  • Loading branch information
haya14busa committed Sep 21, 2019
1 parent c840bb2 commit 010a353
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Expand Up @@ -12,7 +12,10 @@ jobs:
command: 'echo "Golang $(go version)"'
- run: 'curl -sfL https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b $(go env GOPATH)/bin'
- run: '( cd linters && go get golang.org/x/lint/golint )'
- run: 'golint ./... | reviewdog -f=golint -name=golint-circleci -reporter=github-pr-review'
- run:
command: |-
set +o pipefail
golint ./... | reviewdog -f=golint -name=golint-circleci -reporter=github-pr-review
test:
working_directory: ~/reviewdog
docker:
Expand Down

0 comments on commit 010a353

Please sign in to comment.