Skip to content

⬆️ Bump pylint from 3.2.7 to 3.3.0 #43

⬆️ Bump pylint from 3.2.7 to 3.3.0

⬆️ Bump pylint from 3.2.7 to 3.3.0 #43

Workflow file for this run

name: Linting
on:
push:
paths:
- '**.py'
- 'pyproject.toml'
jobs:
pyright:
name: pyright
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flit
flit install
- name: Run Pylint
run: python -m pylint --rcfile=pyproject.toml src/
- name: Run pyright
run: python -m pyright
- name: Run flake8
run: python -m flake8 --toml-config=pyproject.toml