pre-commit-golang
pre-commit-golang copied to clipboard
Add Command hook
Usually, we have a makefile in golang projects and we create commands in this makefile. I believe we should have a hood to run any command passed in args. For e.g.: I have commands make test and make build in my projects and want to run them as pre-push hook. Now I can simply add the hook,
**hooks:
- id: exec-command args: ["make package_repo"]**
Isn't it possible to do this directly with pre-commit?
I am a new user of per-commit and as per my knowledge, it is not supported. If you are aware of the possibility, please suggest me.