Running Github hosted code in our flows
We are trying to find the "Windmill way" of running the latest version of a python tool we develop outside of Windmill in our flows. We found 2 ways but want to understand what the "WIndmill way" is: one way is to rebuild a worker with the latest version on each merge (including a virtual environment in the worker that has all requirements.txt installed). A second option is to "git pull" & activate (basically all the same steps we can do in the worker build process) at the start of our workflow so the worker instance has the latest code available "at runtime" (this feels very unpreferred & hacky). Is the first option the recomendded way (aka rebuild workers with the latest version of our source code / tools in it on each change) or is there a better way? Thanks!