-
Notifications
You must be signed in to change notification settings - Fork 63
49 lines (43 loc) · 1.39 KB
/
validate.yaml
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
45
46
47
48
49
name: Validate
on:
push:
pull_request:
jobs:
validate-hassfest:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v3.0.2
- name: 🏃 Hassfest validation
uses: home-assistant/actions/hassfest@master
validate-hacs:
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v3.0.2
- name: 🏃 HACS validation
uses: hacs/action@main
with:
category: integration
validate-homeassistant:
strategy:
matrix:
channel: [stable, beta, dev]
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout the repository
uses: actions/checkout@v3.0.2
- name: 🛠️ Home Assistant configuration
run: |
mkdir ./test_configuration
cp -r ./custom_components ./test_configuration
echo "default_config:" >> ./test_configuration/configuration.yaml
echo "tts:" >> ./test_configuration/configuration.yaml
echo " - platform: edge_tts" >> ./test_configuration/configuration.yaml
echo " language: zh-CN" >> ./test_configuration/configuration.yaml
- name: 🏡 Home Assistant validation
id: homeassistant
uses: ludeeus/setup-homeassistant@main
with:
tag: ${{ matrix.channel }}
config-dir: test_configuration