mirror of
https://github.com/randybb/esphome-configs.git
synced 2026-03-03 07:14:10 +01:00
54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
yamllint:
|
|
name: YAML lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Get changed YAML files
|
|
id: changed
|
|
uses: tj-actions/changed-files@v46
|
|
with:
|
|
files: "**/*.yaml"
|
|
|
|
- uses: ibiqlik/action-yamllint@v3
|
|
if: steps.changed.outputs.any_changed == 'true'
|
|
with:
|
|
config_file: .yamllint.yml
|
|
file_or_dir: ${{ steps.changed.outputs.all_changed_files }}
|
|
|
|
validate:
|
|
name: ESPHome config validation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Get changed device configs
|
|
id: changed
|
|
uses: tj-actions/changed-files@v46
|
|
with:
|
|
files: "mcu-*.yaml"
|
|
|
|
- name: Install ESPHome (dev)
|
|
if: steps.changed.outputs.any_changed == 'true'
|
|
run: pip install git+https://github.com/esphome/esphome.git@dev
|
|
|
|
- name: Prepare secrets
|
|
if: steps.changed.outputs.any_changed == 'true'
|
|
run: cp secrets.yaml.default secrets.yaml
|
|
|
|
- name: Validate changed configs
|
|
if: steps.changed.outputs.any_changed == 'true'
|
|
run: |
|
|
for f in ${{ steps.changed.outputs.all_changed_files }}; do
|
|
echo "Validating $f..."
|
|
esphome config "$f"
|
|
done
|