Skip to content

Verify

Verify #7833

Workflow file for this run

---
name: Verify
on:
pull_request:
schedule:
- cron: "0 * * * *"
workflow_dispatch:
permissions:
contents: read
jobs:
homeassistant:
runs-on: ubuntu-latest
name: Verify Home Assistant Configuration
strategy:
max-parallel: 4
matrix:
home-assistant-version:
- stable
- beta
- dev
steps:
- uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Prepare data
run: |
./lifecycle/prepare.sh configuration
- name: Check Home Assistant Configuration
uses: frenck/action-home-assistant@941d5d917f4c1c7a7e7d4087526daf90d53f4437 # v1.4.1
with:
path: configuration
secrets: .ci/secrets.yaml
env_file: .ci/env
version: "${{ matrix.home-assistant-version }}"