From 7b651898861d9523f2f8343ac9438e7a59603e38 Mon Sep 17 00:00:00 2001 From: HideBa Date: Sat, 3 Feb 2024 15:42:34 +0100 Subject: [PATCH] ci: fix installation --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75a3512..933164e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,13 @@ jobs: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} - - name: Install dependencies - run: pip install -r requirements.txt + - name: Install Poetry + run: | + curl -sSL https://install.python-poetry.org | python3 - + + - name: Install dependencies with Poetry + run: | + poetry install - name: Linting run: |