12 lines
259 B
YAML
12 lines
259 B
YAML
image: alpine:latest
|
|
|
|
before_script:
|
|
- apk update
|
|
- apk add python3
|
|
- pip3 install homeassistant==$(cat .HA_VERSION)
|
|
|
|
test:config:
|
|
script:
|
|
- cp secrets.example.yaml secrets.yaml
|
|
- touch zones.yaml
|
|
- hass -c . --script check_config --files
|