From 4ce2f819fde0f85033cd65881dbe937d216a3ac4 Mon Sep 17 00:00:00 2001 From: matejcik Date: Fri, 5 Jan 2024 11:31:32 +0100 Subject: [PATCH] ci: fix style check --- .github/workflows/style-check.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/style-check.yml b/.github/workflows/style-check.yml index 866b0a7..52933e8 100644 --- a/.github/workflows/style-check.yml +++ b/.github/workflows/style-check.yml @@ -14,10 +14,8 @@ jobs: with: python-version: '3.x' - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install --upgrade black flake8 wheel mypy setuptools + run: poetry install - name: Check style - run: make style_check + run: poetry run make style_check - name: Check dist - run: make dist + run: poetry run make