fix typos #1748
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
# Yamtllint: Lint Yaml files. | |
# A linter for YAML files. Checks for: | |
# - syntax validity | |
# - weirdnesses like key repetition and cosmetic problems such as: | |
# - lines length | |
# - trailing spaces | |
# - indentation | |
# etc. | |
--- | |
name: Yamllint | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_data: | | |
extends: default | |
rules: | |
line-length: | |
max: 120 |