Skip to content

Merge pull request #426 from dzendos/master #3

Merge pull request #426 from dzendos/master

Merge pull request #426 from dzendos/master #3

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2021-2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
name: pylint
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pylint:
timeout-minutes: 15
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- run: |
pip install pylint
pylint --load-plugins=custom_checkers -d all -e C0411 .