From e3e288e47cbb4e0f824bd84d9cbd6eaa3253b786 Mon Sep 17 00:00:00 2001 From: yanghua Date: Mon, 12 Aug 2024 16:39:25 +0800 Subject: [PATCH] Initial commit --- .github/workflows/pylint.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index a2cbd62..5ffcd71 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -16,8 +16,16 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install pylint - - name: Analysing the code with pylint - run: | - pylint $(git ls-files '*.py') +# python -m pip install --upgrade pip +# pip install poetry + make install + - name: Run lint + run: make lint + +# - name: Install dependencies +# run: | +# python -m pip install --upgrade pip +# pip install pylint +# - name: Analysing the code with pylint +# run: | +# pylint $(git ls-files '*.py')