Linting #1017
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- dev | |
pull_request: | |
schedule: | |
- cron: "0 0 * * *" | |
env: | |
DEFAULT_PYTHON: 3.12 | |
jobs: | |
linting: | |
runs-on: "ubuntu-latest" | |
name: Linting | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
cache: "pip" | |
- name: Install Python modules | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pre-commit black | |
# flake8 isort | |
- name: "Install requirements" | |
run: python3 -m pip install -r requirements.txt | |
- 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/checkout@v4" | |
- 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/checkout@v4" | |
- name: Hassfest validation | |
uses: "home-assistant/actions/hassfest@master" | |
tests: | |
runs-on: "ubuntu-latest" | |
name: Run tests | |
steps: | |
- name: Check out code from GitHub | |
uses: "actions/checkout@v4" | |
- name: Setup Python ${{ env.DEFAULT_PYTHON }} | |
uses: "actions/[email protected]" | |
with: | |
python-version: ${{ env.DEFAULT_PYTHON }} | |
- name: Install requirements | |
run: | | |
pip install --constraint=.github/workflows/constraints.txt pip | |
pip install -r requirements_test.txt | |
- name: Tests suite | |
run: | | |
pytest \ | |
--timeout=9 \ | |
--durations=10 \ | |
-n auto \ | |
-p no:sugar \ | |
tests |