Reverse removal of pylint disabler #128
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pylint | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11", "3.12"] | |
steps: | |
- name: ⤵️ Checkout the repository | |
uses: actions/[email protected] | |
- name: 🏗 Set up Python ${{ matrix.python-version }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- name: 🏗 Install requirement | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: 🏗 Install pylint | |
run: python3 -m pip install pylint | |
- name: 🚀 Analysing the code with pylint | |
run: | | |
pylint $(git ls-files '*.py') |