add fan switch, optimize loops, cleanup #10
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
--- | |
## Source: https://github.com/frenck/home-assistant-config/tree/master/.github/workflows | |
name: linters | |
# yamllint disable-line rule:truthy | |
on: | |
- push | |
jobs: | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out configuration from GitHub | |
uses: actions/checkout@v3 | |
- name: 🚀 Run YAMLlint | |
uses: frenck/[email protected] | |
remarklint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out configuration from GitHub | |
uses: actions/checkout@v3 | |
- name: 🚀 Run Remark lint | |
uses: "docker://pipelinecomponents/remark-lint:latest" | |
continue-on-error: true | |
with: | |
args: "remark --no-stdout --color --frail --use preset-lint-recommended ." |