-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (37 loc) · 1 KB
/
verify.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
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@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
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 }}"