Skip to content

Update ci.yaml

Update ci.yaml #36

Workflow file for this run

name: CI
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
ci:
name: Building ${{ matrix.file }} / ${{ matrix.esphome-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 3
matrix:
#### Modify below here to match your project ####
file:
- tagreader
esphome-version:
- stable
- beta
- dev
#### Modify above here to match your project ####
steps:
- name: Checkout source code
uses: actions/checkout@v4.1.7
- name: ESPHome ${{ matrix.esphome-version }}
uses: esphome/build-action@v4.0.3
with:
yaml-file: ${{ matrix.file }}.yaml
version: ${{ matrix.esphome-version }}