--- name: Validate ESPHome (beta) # yamllint disable-line rule:truthy on: workflow_dispatch: concurrency: # yamllint disable-line rule:line-length group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: code_scan: name: Code scan (YAML) runs-on: "ubuntu-latest" steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Validate nspanel_esphome.yaml run: yamllint -c "./.rules/yamllint.yml" nspanel_esphome.yaml build_core: name: Core runs-on: "ubuntu-latest" needs: - code_scan steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_basic.yaml" version: beta build_advanced: name: Advanced runs-on: "ubuntu-latest" needs: - build_core steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+advanced uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_advanced.yaml" version: beta build_climate_heat: name: Climate (heat) runs-on: "ubuntu-latest" needs: - build_core steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+climate_heat uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_climate_heat.yaml" version: beta build_climate_cool: name: Climate (cool) runs-on: "ubuntu-latest" needs: - build_core steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+climate_cool uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_climate_cool.yaml" version: beta build_climate_dual: name: Climate (dual) runs-on: "ubuntu-latest" needs: - build_core steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+climate_dual uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_climate_dual.yaml" version: beta build_climate_heat_advanced: name: Advanced+climate (heat) runs-on: "ubuntu-latest" needs: - build_climate_heat - build_advanced steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+advanced+climate_heat uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_advanced_climate_heat.yaml" version: beta build_climate_cool_advanced_arduino: name: Arduino runs-on: "ubuntu-latest" needs: - build_climate_cool - build_advanced steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+advanced+climate_cool+arduino uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_advanced_climate_cool_arduino.yaml" version: beta build_climate_dual_esp_idf5: name: esp-idf v5 & Climate Dual & Bluetooth proxy runs-on: "ubuntu-latest" needs: - build_advanced - build_climate_dual steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+climate_dual+bt_proxy+esp_idf5 uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_advanced_climate_dual_esp_idf5.yaml" version: beta build_climate_heat_advanced_customization: name: Customizations runs-on: "ubuntu-latest" needs: - code_scan steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+advanced+climate_heat+customizations uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_advanced_climate_heat_customizations.yaml" version: beta build_prebuilt_firmware: name: Prebuilt Firmware runs-on: ubuntu-latest needs: code_scan if: github.ref == 'refs/heads/dev' || github.base_ref == 'dev' steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build ESPHome Prebuilt Firmware uses: barndawgie/build-action@v1.9.0 with: yaml_file: prebuilt/nspanel_esphome_prebuilt.yaml version: beta - name: Build ESPHome Prebuilt Wall Display Firmware uses: barndawgie/build-action@v1.9.0 with: yaml_file: prebuilt/wall_display.yaml version: beta build_climate_cool_bluetooth_proxy: name: Climate cool & BLE proxy runs-on: "ubuntu-latest" needs: - build_climate_cool steps: - uses: actions/checkout@main with: fetch-depth: '0' - name: Build core+climate_cool+bluetooth_proxy uses: barndawgie/build-action@v1.9.0 with: yaml_file: "./.test/esphome_climate_cool_bluetooth_proxy.yaml" version: beta ...