diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index aa7ef0d52..66a4e0086 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -72,6 +72,11 @@ jobs: python -m pip install wheel setuptools -U python -c "import sys; print(sys.executable)" + - name: Enable long paths in Windows + shell: powershell + run: | + New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force + - name: Install project and documentation dependencies run: | .venv\Scripts\Activate.ps1