test d1 mini config change to support new field #118
Workflow file for this run
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
# Build component for different platforms | |
name: build CI test | |
on: | |
push: | |
pull_request: | |
branches: [ "master", "dev" , "experimental" ] | |
jobs: | |
tests: | |
name: Building ${{ matrix.file }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
file: | |
- tests/esp32-arduino-hon-ethernet.yaml | |
- tests/esp32-arduino-hon-wifi.yaml | |
- tests/esp32-arduino-smartair2-ethernet.yaml | |
- tests/esp32-arduino-smartair2-wifi.yaml | |
- tests/esp32-idf-hon-ethernet.yaml | |
- tests/esp32-idf-hon-wifi.yaml | |
- tests/esp32-idf-smartair2-ethernet.yaml | |
- tests/esp32-idf-smartair2-wifi.yaml | |
- tests/esp8266-hon-wifi.yaml | |
- tests/esp8266-smartair2-wifi.yaml | |
- tests/rpipicow-hon-wifi.yaml | |
- tests/rpipicow-smartair2-wifi.yaml | |
- tests/esp8266-simple-smartair2.yaml | |
- tests/esp8266-simple-hon.yaml | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Install esphome | |
run: pip3 install -U esphome | |
- name: Version esphome | |
run: esphome version | |
- name: Build ESPHome config | |
run: esphome compile ${{ matrix.file }} |