Skip to content

pylint: fix a typo

pylint: fix a typo #24

Workflow file for this run

name: Linter
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
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') --output=lint-python${{ matrix.python-version }}.txt || true
- name: Upload lint log
uses: actions/upload-artifact@v4
with:
name: lint-python${{ matrix.python-version }}.txt
path: lint-python${{ matrix.python-version }}.txt