Closes #311 - fix no_match_in_condition reports a warning even when the condition includes a valid match #330
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
--- | |
name: lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: {} | |
jobs: | |
md_and_yml: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
# uses .markdownlint.yml for configuration | |
- name: markdownlint | |
uses: DavidAnson/markdownlint-cli2-action@v17 | |
with: | |
globs: | | |
LICENSE | |
*.md | |
doc_rules/**/*.md | |
.github/**/*.md | |
- name: yamllint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
file_or_dir: | | |
.github/**/*.yml | |
.*.yml | |
strict: true | |
config_file: .yamllint.yml |