mirror of
https://github.com/athom-tech/esp32-configs.git
synced 2026-07-28 04:05:53 +00:00
29 lines
734 B
YAML
29 lines
734 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
ci:
|
|
name: Building ${{ matrix.file }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
file:
|
|
- athom-2ch-relay-board.yaml
|
|
- athom-4ch-relay-board.yaml
|
|
- athom-8ch-relay-board.yaml
|
|
- athom-energy-monitor-x2.yaml
|
|
- athom-energy-monitor-x6.yaml
|
|
- athom-garage-door.yaml
|
|
- athom-mini-relay-v2.yaml
|
|
- athom-smart-plug.yaml
|
|
- athom-zigbee-gateway.yaml
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v4.1.7
|
|
- name: Build ESPHome firmware to verify configuration
|
|
uses: esphome/build-action@v4.0.1
|
|
with:
|
|
yaml_file: ${{ matrix.file }}
|