Skip to content

Linting

Linting #506

Workflow file for this run

name: Linting
on:
push:
branches:
- main
- master
- dev
pull_request:
schedule:
- cron: "0 0 * * *"
env:
DEFAULT_PYTHON: 3.9
jobs:
pre-commit:
runs-on: "ubuntu-latest"
name: Pre-commit
steps:
- name: Check out the repository
uses: actions/[email protected]
- name: Set up Python {{ "${{ env.DEFAULT_PYTHON }}" }}
uses: actions/[email protected]
with:
python-version: {{ "${{ env.DEFAULT_PYTHON }}" }}

Check failure on line 27 in .github/workflows/tests.yaml

View workflow run for this annotation

GitHub Actions / Linting

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yaml (Line: 27, Col: 27): A mapping was not expected
- name: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version
- name: Install Python modules
run: |
pip install --constraint=.github/workflows/constraints.txt pre-commit black flake8 reorder-python-imports
- name: Run pre-commit on all files
run: |
pre-commit run --all-files --show-diff-on-failure --color=always
hacs:
runs-on: "ubuntu-latest"
name: HACS
steps:
- name: Check out the repository
uses: "actions/[email protected]"
- name: HACS validation
uses: "hacs/[email protected]"
with:
category: "integration"
ignore: brands
hassfest:
runs-on: "ubuntu-latest"
name: Hassfest
steps:
- name: Check out the repository
uses: "actions/[email protected]"
- name: Hassfest validation
uses: "home-assistant/actions/hassfest@master"