Merge pull request #1415 from adamreese/fix/ci-compile-go

fix(ci): ensure go packages are compiled before testing
pull/1446/head
Adam Reese 8 years ago committed by GitHub
commit 21084937fb

@ -37,6 +37,10 @@ run_style_check() {
make test-style
}
# Build to ensure packages are compiled
echo "Running 'make build'"
make build
case "${CIRCLE_NODE_INDEX-0}" in
0) run_unit_test ;;
1) run_style_check ;;

Loading…
Cancel
Save