Skip to content

Bump pytest-homeassistant-custom-component from 0.13.320 to 0.13.322 #174

Bump pytest-homeassistant-custom-component from 0.13.320 to 0.13.322

Bump pytest-homeassistant-custom-component from 0.13.320 to 0.13.322 #174

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
python-version: ["3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --fail-under=9 --max-line-length=120 --disable=import-error,wrong-import-position,wrong-import-order,too-many-instance-attributes,too-many-locals,too-many-arguments,too-few-public-methods --ignore-paths=^tests/.*$ $(git ls-files '*.py')