fix ids #42
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: Test | |
# Trugger | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
validate: | |
name: Validate devices' configuration | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install ESPHome | |
run: pip3 install esphome | |
- name: Check ESPHome version | |
run: esphome version | |
- name: Test configuration | |
run: ./script/test.ps1 |