8000 Merge branch 'dev' of https://github.com/clydebarrow/esphome into dev · clydebarrow/esphome@6565bdf · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Merge 75AD branch 'dev' of https://github.com/clydebarrow/esphome into dev #408

Merge branch 'dev' of https://github.com/clydebarrow/esphome into dev

Merge branch 'dev' of https://github.com/clydebarrow/esphome into dev #408

Workflow file for this run

---
name: YAML lint
on:
push:
branches: [dev, beta, release]
paths:
- "**.yaml"
- "**.yml"
pull_request:
paths:
- "**.yaml"
- "**.yml"
jobs:
yamllint:
name: yamllint
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/checkout@v4.1.7
- name: Run yamllint
uses: frenck/action-yamllint@v1.5.0
with:
strict: true
0