CI #762
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: CI | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: 0 12 * * * | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_file: .yamllint | |
esphome-config: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out configuration from GitHub | |
uses: actions/checkout@v2 | |
- name: Setup Python 3.12 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install esphome | |
pip list | |
esphome version | |
- name: Write tests/secrets.yaml | |
shell: bash | |
run: 'echo -e "wifi_ssid: ssid\nwifi_password: password\nmqtt_host: host\nmqtt_username: username\nmqtt_password: password" > tests/secrets.yaml' | |
- name: Validate test configurations | |
run: | | |
for YAML in tests/esp*.yaml; do | |
esphome -s external_components_source ../components config $YAML >/dev/null | |
done | |
- name: Write secrets.yaml | |
shell: bash | |
run: 'echo -e "wifi_ssid: ssid\nwifi_password: password\nmqtt_host: host\nmqtt_username: username\nmqtt_password: password" > secrets.yaml' | |
- name: Validate example configurations | |
run: | | |
for YAML in esp*.yaml; do | |
esphome -s external_components_source components config $YAML >/dev/null | |
done | |
esphome-compile: | |
runs-on: ubuntu-latest | |
needs: [esphome-config] | |
steps: | |
- name: ⤵️ Check out configuration from GitHub | |
uses: actions/checkout@v2 | |
- name: Cache .esphome | |
uses: actions/cache@v2 | |
with: | |
path: .esphome | |
key: esphome-compile-esphome-${{ hashFiles('*.yaml') }} | |
restore-keys: esphome-compile-esphome- | |
- name: Cache .pioenvs | |
uses: actions/cache@v2 | |
with: | |
path: .pioenvs | |
key: esphome-compile-pioenvs-${{ hashFiles('*.yaml') }} | |
restore-keys: esphome-compile-pioenvs- | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.12 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install esphome | |
pip list | |
esphome version | |
- name: Register problem matchers | |
run: | | |
echo "::add-matcher::.github/workflows/matchers/gcc.json" | |
echo "::add-matcher::.github/workflows/matchers/python.json" | |
- name: Write secrets.yaml | |
shell: bash | |
run: 'echo -e "wifi_ssid: ssid\nwifi_password: password\nmqtt_host: host\nmqtt_username: username\nmqtt_password: password" > secrets.yaml' | |
- name: Compile example configurations | |
run: | | |
for YAML in esp*.yaml; do | |
esphome -s external_components_source components compile $YAML | |
done |