Lint Markdown files after push by altomator #36
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
# @file markdown-linter.yml | |
# @brief GitHub Actions workflow to run a Markdown linter on .md files | |
# @license Please see the file named LICENSE in the repository | |
# @repo https://github.com/AI4LAM/awesome-ai4lam | |
name: Lint Markdown files | |
run-name: Lint Markdown files after ${{github.event_name}} by ${{github.actor}} | |
on: | |
push: | |
paths: | |
- '*.md' | |
pull_request: | |
paths: | |
- '*.md' | |
workflow_dispatch: | |
paths: | |
- '*.md' | |
jobs: | |
lint: | |
name: "Run Markdown linter" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DavidAnson/markdownlint-cli2-action@v13 | |
with: | |
config: '.markdownlint.json' | |
globs: | | |
*.md |