Skip to content

Commit

Permalink
[DOP-13293] Add doc
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-pedchenko committed Mar 27, 2024
1 parent 1ddd8e1 commit 3fdbb07
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,23 @@ jobs:
with:
python-version: ${{ env.DEFAULT_PYTHON }}

- name: Install poetry
uses: snok/install-poetry@v1

- name: Cache poetry
uses: actions/cache@v4
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-py-${{ hashFiles('**/poetry.lock') }}-${{ env.DEFAULT_PYTHON }}
restore-keys: |
${{ runner.os }}-py-${{ hashFiles('**/poetry.lock') }}-
${{ runner.os }}-py-
- name: Install dependencies
run: |
poetry install --no-root --all-extras --without test,dev
- name: Install system dependencies
# this step is needed for successful installation of "bonsai" library in python dependencies
run: sudo apt-get update && sudo apt-get install -y libldap2-dev libsasl2-dev
Expand Down

0 comments on commit 3fdbb07

Please sign in to comment.