Merge 75AD branch 'dev' of https://github.com/clydebarrow/esphome into dev #408
This file contains hidden or 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: 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 |