From 120481fe68d410a9bebcffd2f7dc579ac1edccd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D8=B3=D8=A7=D9=84=D9=85?= Date: Fri, 5 Dec 2025 19:35:15 +0300 Subject: [PATCH] Fix syntax error in pylint.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit شات ذكاء --- .github/workflows/pylint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pylint.yml diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml new file mode 100644 index 0000000000..4cbb1167e8 --- /dev/null +++ b/.github/workflows/pylint.yml @@ -0,0 +1,23 @@ +شاتname: Pylint + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + python-version: ["3.8", "3.9", "3.10"] + steps: + - uses: actions/checkout@v4 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v3 + with: + 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')