From ebed587f6fe6694554c388cb10e7fa4b86bdef2e Mon Sep 17 00:00:00 2001 From: "alexei.dolgolyov" Date: Sat, 31 Jan 2026 01:53:00 +0300 Subject: [PATCH] Let's try this actions one more time --- .github/workflows/validate.yaml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 8f9523f..1d08825 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -12,11 +12,20 @@ jobs: name: Hassfest runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout integration + uses: actions/checkout@v4 + with: + path: integration + - name: Checkout Home Assistant core + uses: actions/checkout@v4 + with: + repository: home-assistant/core + path: core - uses: actions/setup-python@v5 with: python-version: "3.12" - - name: Install Home Assistant - run: pip install homeassistant + - name: Install dependencies + run: pip install -r core/requirements.txt - name: Run hassfest - run: python -m script.hassfest --integration-path="${{ github.workspace }}/custom_components/immich_album_watcher" --action=validate + run: python -m script.hassfest --integration-path="${{ github.workspace }}/integration/custom_components/immich_album_watcher" --action=validate + working-directory: core