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