Skip to content

Bump actions/checkout from 5 to 6 #88

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #88

Workflow file for this run

name: CI
on:
pull_request:
paths:
- '*.yaml'
- '.github/workflows/ci.yml'
schedule:
- cron: '0 0 * * 0'
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:
file:
- fancontroller-rev1.0-esp32
- fancontroller-rev2.0-esp32s2
- fancontroller-rev3.0-esp32s2
- fancontroller-rev3.1-esp32s2
esphome-version:
- stable
- beta
steps:
- name: Checkout source code
uses: actions/checkout@v6
- name: ESPHome ${{ matrix.esphome-version }}
uses: esphome/build-action@v7
with:
yaml-file: ${{ matrix.file }}.yaml
version: ${{ matrix.esphome-version }}
- name: ESPHome ${{ matrix.esphome-version }} Factory
uses: esphome/build-action@v7
with:
yaml-file: ${{ matrix.file }}.factory.yaml
version: ${{ matrix.esphome-version }}