describe how ESPHome packages work and give an example #11
This file contains hidden or 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: CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| # see https://github.com/esphome/esphome-project-template/tree/main/.github/workflows | |
| build: | |
| name: Build ESPHome project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v5 | |
| - name: ESPHome | |
| uses: esphome/build-action@v7 | |
| with: | |
| yaml-file: main.yaml | |
| version: stable |