File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626 steps :
2727 - uses : actions/checkout@v3
2828 - name : Set up Python ${{ matrix.python-version }}
29- uses : actions/setup-python@v2
29+ uses : actions/setup-python@v4
3030 with :
3131 python-version : ${{ matrix.python-version }}
3232 - name : Install Poetry
4242 with :
4343 path : .venv
4444 key : venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
45- - name : Install dependencies
45+ - name : Install dependencies and root package
4646 if : steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
47- run : poetry install --no-interaction
47+ run : |
48+ poetry install --no-interaction --no-root
49+ poetry install --no-interaction
4850 # Install pandoc for building docs
4951 - name : Install pandoc for Ubuntu
5052 if : matrix.os == 'ubuntu-latest'
You can’t perform that action at this time.
0 commit comments