Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Freeze aiogram at 2.23 #80

Freeze aiogram at 2.23

Freeze aiogram at 2.23 #80

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: |
pylint `ls -R|grep .py$|xargs`