-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (47 loc) · 1.82 KB
/
home_assistant_dev_version.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
45
46
47
48
49
50
---
name: DEV - validate config
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 2 * * *"
jobs:
home_assistant_latest_release:
runs-on: ubuntu-latest
steps:
- name: Getting your configuration from GitHub
uses: actions/checkout@v1
- name: Copy stub files into configuration folder
run: |
cp -R ci_secrets.yaml secrets.yaml
sudo mkdir -p /github/workspace/tmp
- name: Home Assistant Version
uses: "docker://homeassistant/home-assistant:dev"
with:
args: |
python -m homeassistant --version
- name: Install frontend
run: |
mkdir -p www/community
cd www/community
git clone https://github.com/bramkragten/weather-card
git clone https://github.com/ExperienceLovelace/lovelace-floorplan
git clone https://github.com/custom-cards/upcoming-media-card
git clone https://github.com/custom-cards/button-card
git clone https://github.com/benct/lovelace-battery-entity-row
git clone https://github.com/home-assistant-community-themes/dark-mint
git clone https://github.com/kalkih/mini-graph-card
- name: Install integrations
run: |
mkdir -p custom_components
mkdir tmp
cd tmp
git clone https://github.com/thomasloven/hass-browser_mod
mv hass-browser_mod/custom_components/browser_mod ../custom_components
git clone https://github.com/custom-components/sensor.plex_recently_added
mv sensor.plex_recently_added/custom_components/plex_recently_added ../custom_components
- name: Home Assistant Check
uses: "docker://homeassistant/home-assistant:dev"
with:
args: python -m homeassistant --config ./ --script check_config --info all