Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install goimports with go install #1099

Merged
merged 2 commits into from Apr 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .circleci/config.yml
Expand Up @@ -119,7 +119,7 @@ jobs:
- run:
name: run precommit
command: |
go get golang.org/x/tools/cmd/goimports
go install golang.org/x/tools/cmd/goimports@latest
# Install the latest minor version for v2
pip install pre-commit~=2.9
pre-commit install
Expand All @@ -136,6 +136,8 @@ jobs:
# environment so it pulls in what it needs.
go mod tidy

go install github.com/mitchellh/gox@latest

GO_ENABLED=0 build-go-binaries \
--parallel "$BIN_BUILD_PARALLELISM" \
--app-name terratest_log_parser \
Expand Down