From c25a63a2c8dc0705a1a32b8a110c7d74950c552c Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Wed, 12 May 2021 23:08:07 +0300 Subject: [PATCH] Separate dependenties installation --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 26970d05..6cd9eeec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,10 +32,13 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: System dependencies run: | python -m pip install --upgrade pip curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - + + - name: Project dependencies + run: | poetry install - name: Lint code