-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
BCF-2141: clean up make generate #8722
Conversation
now `make generate` runs the make commands for `go install`. Previously `make generate` installed some but not all dependencies.
I see that you haven't updated any CHANGELOG files. Would it make sense to do so? |
79494a9
to
d7abd0c
Compare
d7abd0c
to
064e76a
Compare
- name: Ensure clean after generate | ||
run: git diff --stat --exit-code | ||
- run: make gomodtidy |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I had tidy first since it is faster? nbd though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i moved it here since generate is running go install under the hood and i thought might effect the result of gomodtidy
SonarQube Quality Gate |
now
make generate
runs the make commands forgo install
. Previouslymake generate
installed some but not all dependencies.