From 7713225fc84e43f6a6859113c13fa2b0b957dff9 Mon Sep 17 00:00:00 2001 From: Marie PUPO JEAMMET Date: Fri, 5 Jan 2024 19:30:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7(ci)=20fix=20python=20linting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pylint and ruff weren't reporting linting issues --- .github/workflows/people.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml index d31de11..73d22eb 100644 --- a/.github/workflows/people.yml +++ b/.github/workflows/people.yml @@ -105,11 +105,11 @@ jobs: - name: Install development dependencies run: pip install --user .[dev] - name: Check code formatting with ruff - run: ~/.local/bin/ruff format people --diff + run: ~/.local/bin/ruff format . --diff - name: Lint code with ruff - run: ~/.local/bin/ruff check people + run: ~/.local/bin/ruff check . - name: Lint code with pylint - run: ~/.local/bin/pylint people + run: ~/.local/bin/pylint . test-back: runs-on: ubuntu-latest