Workflow tweak for HA config.
Home Assistant & Miscellaneous Deployment / Check and Create PR (push) Successful in 15s
Home Assistant & Miscellaneous Deployment / Home Assistant Configuration Check (push) Failing after 3m26s

This commit is contained in:
2025-08-25 16:41:55 -04:00
parent b5f1e15304
commit fee1f28a84
+1 -5
View File
@@ -72,16 +72,12 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.13.2'
- name: Create virtual environment
- name: Create virtual environment and install Home Assistant
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
pip install homeassistant==2025.8.3
# Download and install all Home Assistant requirements
mkdir -p /tmp/ha-requirements
curl -sSL https://raw.githubusercontent.com/home-assistant/core/2025.8.3/requirements_all.txt -o /tmp/ha-requirements/requirements_all.txt
pip install -r /tmp/ha-requirements/requirements_all.txt
- name: Run Home Assistant config check
run: |
source venv/bin/activate