Skip to content

Add custom linters to pipeline #1

Add custom linters to pipeline

Add custom linters to pipeline #1

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2021-2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length,shellcheck
name: custom-pylint
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
custom-lint:
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 .