Skip to content

⬆️ Bump flake8-bugbear from 24.4.26 to 24.8.19 #37

⬆️ Bump flake8-bugbear from 24.4.26 to 24.8.19

⬆️ Bump flake8-bugbear from 24.4.26 to 24.8.19 #37

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