Hey
@Alejandro Sanchez Losa, we’d appreciate it if you moved the picture in this thread just to keep the main channel a bit cleaner. I think there are two separate issues here. The first is how to run a Flow with a custom module. You have two options, the first one is to make sure the execution environment has access to the module. For example, you can start a Local Agent in the directory that has the module. You can configure a
LocalRun to run a Flow in a working directory. The second option is to use
Docker Storage where you can add those dependencies inside the container. This way, the Flow will have access to it.
The second issue is registering a flow with CI/CD (Github Actions). I’ve personally used Github Actions just a bit, but you also need the dependencies in your action. If they are in the same repo, I don’t think it should be a problem since you can pip install the custom package and then you can import them. You can delay the imports by doing them inside tasks or functions so that they just get imported at runtime.