update base config: fix typo, add ignore_efuse_custom_mac, remove trailing spaces, update version #486
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: Build | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
build-stable: | |
name: Build stable ${{ matrix.firmware.name }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
firmware: | |
- file: tests/ulanzi-test.yaml | |
name: Ulanzi-Easy | |
manifest_filename: ulanzi-test-manifest.json | |
fail-fast: false | |
steps: | |
- name: Checkout source code | |
uses: actions/[email protected] | |
- name: Build firmware | |
uses: esphome/build-action@v3 | |
id: esphome-build | |
with: | |
yaml_file: ${{ matrix.firmware.file }} | |
version: latest |