mirror of
https://gitlab.com/skobkin/home-assistant-config.git
synced 2024-11-14 00:23:05 +00:00
16 lines
287 B
YAML
16 lines
287 B
YAML
image: 'python:3.5-slim'
|
|
|
|
before_script:
|
|
- cp ci_secrets.yaml secrets.yaml
|
|
- apt-get update
|
|
- apt-get install -y libudev-dev
|
|
- pip3 install homeassistant
|
|
# Creating placeholder files
|
|
- echo '[]' > persons.yaml
|
|
|
|
check_config:
|
|
script:
|
|
- hass -c . --script check_config
|
|
|
|
|