fix: Hopefully fixes all problems
Some checks failed
Code Quality Check / Code Formatting (push) Failing after 23s
Code Quality Check / Security Analysis (push) Failing after 25s
Integration Testing / Integration Tests (2024.12.0, 3.13) (push) Failing after 1m38s
Integration Testing / Integration Tests (2025.9.4, 3.13) (push) Failing after 24s

Signed-off-by: Rafal Zielinski <sq4ind@gmail.com>
This commit is contained in:
2025-09-28 18:44:31 +01:00
parent ed94d40e96
commit c85173e0e9
7 changed files with 8 additions and 8 deletions

View File

@@ -20,6 +20,7 @@ jobs:
with:
python-version: '3.13'
# FIXED: Added cache configuration
- name: Cache pip dependencies
uses: actions/cache@v4
with:
@@ -38,7 +39,7 @@ jobs:
echo "🔍 Checking code formatting with Black..."
black --check --diff --color custom_components/ tests/
- name: Import Sorting Check (isort)
- name: Import Sorting Check (isort)
run: |
echo "📦 Checking import sorting with isort..."
isort --check-only --diff --color custom_components/ tests/
@@ -71,7 +72,7 @@ jobs:
echo "🔒 Running security analysis with Bandit..."
bandit -r custom_components/ -ll
- name: Dependency Security Check (Safety)
- name: Dependency Security Check (Safety)
run: |
echo "🔒 Checking dependencies with Safety..."
pip install -r requirements-dev.txt