Skip to content

Commit

Permalink
Merge pull request #4 from mzampetakis/add-linter
Browse files Browse the repository at this point in the history
Update config.yml
  • Loading branch information
mzampetakis committed Aug 18, 2020
2 parents 2b88c0e + 0151cb4 commit 9ac6891
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .circleci/config.yml
Expand Up @@ -22,7 +22,13 @@ jobs:
go test -timeout 10s -p 4 -count=1 ./... -v -covermode=count -coverprofile=coverage.out
go tool cover -html=coverage.out -o coverage.html
mv coverage.html /tmp/test-results
- run:
name: Run linters
command: |
go get golang.org/x/lint/golint
golint -set_exit_status ./...
- store_artifacts:
path: /tmp/test-results
destination: raw-test-output
Expand Down

0 comments on commit 9ac6891

Please sign in to comment.