-
Notifications
You must be signed in to change notification settings - Fork 51
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
Add Megacheck #84
Add Megacheck #84
Conversation
Hey @mjtrangoni this looks cool, thanks for sharing! I definitely see value in adding this, though this PR could use a bit of cleaning. First, do you mind rebasing against the master branch of this upstream repository and adding the single commit (looks like you are adding just one new commit, though I could be wrong). Second, looks like the Travis check is failing as it is unable to run Thanks! I'm excited about this - let me know if you have any questions. |
dce7f4a
to
fbd46fb
Compare
Hi @roclark, |
No worries! Looks much better now! And yes, Travis failing in this case is expected. I will let @joehandzik voice his opinion as well, but I might hold off on merging this until we at least have a fix for these issues in the works or merged - if at the very least to minimize (or prevent) the time the repository is marked as failing the build. |
Makefile
Outdated
|
||
.PHONY: all format vet build test promu clean $(GOPATH)/bin/promu | ||
.PHONY: all format vet mega build test promu mega clean $(GOPATH)/bin/promu $(GOPATH)/bin/megacheck |
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.
Why is mega in this line twice?
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.
fixed
@mjtrangoni now that @joehandzik fixed the issues raised by megacheck and merged them with master, do you mind rebasing against the latest master commit again? I will pull this in once rebased and all of the checks are passing! Edit: Nevermind - I remembered I can manually retrigger the build, so you are good to go! |
Hi,
I just found megacheck as a part of the go-tools project and wanted to give it a try.
As you can see above, this seems to be worth.
See also,
This could be integrated to the project, of course after resolving the issues, if you are interested.