Skip to content

Update dependency pylint to v3.3.1 #442

Update dependency pylint to v3.3.1

Update dependency pylint to v3.3.1 #442

Workflow file for this run

name: Lint
on: [pull_request]
concurrency:
group: >-
${{ github.workflow }}-${{
github.event.pull_request.number || github.sha
}}
cancel-in-progress: true
jobs:
linter:
name: Run linter
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Python dependencies
run: |
pip install pipenv
pipenv sync
- name: Run pylint
run: pipenv run pylint tests plugins
- name: Run black
run: pipenv run python -m black --check --diff plugins tests