Skip to content

Commit

Permalink
Run generate ./... and test ./... in circle
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Scarr committed Oct 25, 2018
1 parent 7833d0c commit 686c71a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -eu

echo "### go generating"
go generate $(go list ./... | grep -v codegen/tests)
go generate ./...

if [[ $(git --no-pager diff) ]] ; then
echo "you need to run go generate"
Expand All @@ -12,7 +12,7 @@ if [[ $(git --no-pager diff) ]] ; then
fi

echo "### running testsuite"
go test -race $(go list ./... | grep -v codegen/tests)
go test -race ./...

echo "### linting"
gometalinter --vendor ./...

0 comments on commit 686c71a

Please sign in to comment.