From f6c7039be8f331309bdc9ed9022d15657b273e87 Mon Sep 17 00:00:00 2001 From: Arkadii Yakovets Date: Wed, 4 Sep 2024 12:46:15 -0700 Subject: [PATCH] Update workflow poetry related steps --- .github/workflows/ci-cd.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index 2cc38fe..e837875 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -18,6 +18,9 @@ jobs: - name: Check out repository uses: actions/checkout@v4 + - name: Install Poetry + run: pipx install poetry + - name: Set up Python uses: actions/setup-python@v5 with: @@ -57,6 +60,9 @@ jobs: - name: Check out repository uses: actions/checkout@v4 + - name: Install Poetry + run: pipx install poetry + - name: Set up Python uses: actions/setup-python@v5 with: @@ -67,7 +73,6 @@ jobs: - name: Install dependencies run: | cd backend - python -m pip install --upgrade poetry poetry install --no-root --with test - name: Run tests