diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 1bfb332d..45663514 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -71,8 +71,8 @@ jobs: - name: Install docs dependencies if: (matrix.os == 'ubuntu-22.04') && (github.event_name == 'pull_request' || github.event_name == 'schedule' ) run: | - cd docs - bash ./install.sh + cd docs && bash ./install.sh + for w in `find wheelhouse/ -type f -name "*.whl"` ; do poetry install $w ; done - name: Build docs if: (matrix.os == 'ubuntu-22.04') && (github.event_name == 'pull_request' || github.event_name == 'schedule' ) timeout-minutes: 20 @@ -131,7 +131,7 @@ jobs: - name: Install docs dependencies run: | cd docs - poetry install + bash ./install.sh - name: Build docs timeout-minutes: 20 run: |