When I push a commit, the basic workflow fails at the "installing dependencies" part. Here is the trace of the failure:
Run poetry env use ""
poetry env use ""
poetry install --no-interaction --no-cache
shell: /usr/bin/bash -e {0}
env:
pythonLocation: /opt/hostedtoolcache/Python/3.11.6/x64
PKG_CONFIG_PATH: /opt/hostedtoolcache/Python/3.11.6/x64/lib/pkgconfig
Python_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.6/x64
Python2_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.6/x64
Python3_ROOT_DIR: /opt/hostedtoolcache/Python/3.11.6/x64
LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.11.6/x64/lib
Could not find the python executable
Error: Process completed with exit code 1.
From the looks of it, poetry fails because the variable ${{ matrix.python-version }} is empty. Could it be that the variable is not defined in docs.yaml? I can see it in ci.yaml but I am not sure if that file is used in this workflow.
When I push a commit, the basic workflow fails at the "installing dependencies" part. Here is the trace of the failure:
From the looks of it, poetry fails because the variable
${{ matrix.python-version }}
is empty. Could it be that the variable is not defined indocs.yaml
? I can see it inci.yaml
but I am not sure if that file is used in this workflow.