I’ve built a Julia package that uses a python package imported via PyCall.
The python package is only available via GitHub, it’s not available via pip or Conda.
Locally, this works fine. I can simply install the package in the Conda environment used by the Julia package and it’s able to find it.
However, when I push to Github, the CI fails because it can’t find the python package.
Is there any way how I can install a python package from Github in Github Actions?