π₯ remove flaky garage door sensor #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: π‘ Home Assistant CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
yamllint: | |
name: π§Ή yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Checkout code | |
uses: actions/checkout@v1 | |
- name: π΅οΈ Run yamllint | |
uses: "docker://pipelinecomponents/yamllint:latest" | |
with: | |
args: yamllint --format github . | |
homme-assistant: | |
name: π‘ Home Assistant Config Check | |
runs-on: ubuntu-latest | |
needs: [yamllint] | |
steps: | |
- name: π₯ Checkout code | |
uses: actions/checkout@v1 | |
- name: β‘οΈ Copy stub files | |
run: cp -R ./.stubs/* . | |
- name: π΅οΈ Check configuration | |
uses: "docker://homeassistant/home-assistant:stable" | |
with: | |
args: | | |
python -m homeassistant --config /github/workspace --script check_config --info all |