Files
haos-hacs-immich-album-watcher/.github/workflows/validate.yaml
alexei.dolgolyov ebed587f6f
Some checks failed
Validate / Hassfest (push) Failing after 1m4s
Let's try this actions one more time
2026-01-31 01:53:00 +03:00

32 lines
824 B
YAML

name: Validate
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
hassfest:
name: Hassfest
runs-on: ubuntu-latest
steps:
- 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 dependencies
run: pip install -r core/requirements.txt
- name: Run hassfest
run: python -m script.hassfest --integration-path="${{ github.workspace }}/integration/custom_components/immich_album_watcher" --action=validate
working-directory: core