Create pylint.yml

This commit is contained in:
Yousef Abu Shanab 2025-04-10 02:21:26 -07:00 committed by GitHub
parent 68a5d5f176
commit 6165e0c6bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
.github/workflows/pylint.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: pylint .