Add parity for UART #87
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
jobs: | |
ci: | |
name: Building ${{ matrix.file }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
file: | |
- athom-cb02.yaml | |
- athom-garage-door.yaml | |
- athom-mini-switch.yaml | |
- athom-presence-sensor.yaml | |
- athom-relay-board-x1.yaml | |
- athom-relay-board-x2.yaml | |
- athom-relay-board-x4.yaml | |
- athom-relay-board-x8.yaml | |
- athom-rgb-light.yaml | |
- athom-rgbct-light.yaml | |
- athom-rgbw-light.yaml | |
- athom-rgbww-light.yaml | |
- athom-smart-plug-v2.yaml | |
- athom-smart-plug.yaml | |
- athom-sw01-v2.yaml | |
- athom-sw01.yaml | |
- athom-sw02-v2.yaml | |
- athom-sw02.yaml | |
- athom-sw03.yaml | |
- athom-sw04.yaml | |
- athom-wall-outlet.yaml | |
- athom-without-relay-plug.yaml | |
steps: | |
- name: Checkout source code | |
uses: actions/[email protected] | |
- name: Build ESPHome firmware to verify configuration | |
uses: esphome/[email protected] | |
with: | |
yaml-file: ${{ matrix.file }} |