From 4af2d1a7ab3d2c97b5e490605d871aa93556a2d3 Mon Sep 17 00:00:00 2001 From: Andreas Lord Date: Mon, 27 Oct 2025 15:26:09 +0300 Subject: [PATCH 1/2] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=20pyli?= =?UTF-8?q?nt.yml=20=D0=B4=D0=BB=D1=8F=20workflow=20github?= 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 0000000..fb53b95 --- /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.11", "3.12"] + 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 -r requirements.txt pylint + - name: Analysing the code with pylint + run: | + pylint $(git ls-files '*.py') From 3e8a4d5c08d62038918d3fe21087790e70ca1576 Mon Sep 17 00:00:00 2001 From: intervisionlord Date: Mon, 27 Oct 2025 15:34:27 +0300 Subject: [PATCH 2/2] =?UTF-8?q?build(requirements):=20=D0=9F=D0=BE=D0=BD?= =?UTF-8?q?=D0=B8=D0=B6=D0=B5=D0=BD=D0=B8=D0=B5=20pydantic=20=D0=B4=D0=BE?= =?UTF-8?q?=202.11.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0a14b23..4a6dda0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ aiogram==3.22.0 fastapi==0.120.0 loguru==0.7.3 -pydantic==2.12 +pydantic==2.11.4 pydantic_settings==2.11.0 uvicorn==0.38.0