Update pytest-homeassistant-custom-component requirement from ~=0.13.205 to ~=0.13.208 in the homeassistant group #759
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: "Lint" | |
on: | |
push: | |
branches: | |
- "main" | |
- "feature/*" | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
ruff: | |
name: "Ruff" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout the repository" | |
uses: "actions/[email protected]" | |
- name: "Set up Python" | |
uses: actions/[email protected] | |
with: | |
python-version: "3.13" | |
cache: "pip" | |
- name: "Install requirements" | |
run: pip install -r requirements-dev.txt | |
- name: "Lint" | |
run: ruff check --output-format=github . |