Try fixing Markdown CI #3
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: Markdown Checks and Tests | |
on: | |
push: | |
paths: | |
- '*.MD' | |
- '*.md' | |
- '.github/workflows/markdown-ci.yml' | |
workflow_dispatch: # enables "click to run" button | |
jobs: | |
ci: | |
name: Run markdownlint-cli | |
runs-on: 'ubuntu-20.04' | |
steps: | |
- name: Run markdownlint | |
uses: articulate/actions-markdownlint@v1 | |
with: | |
files: \*.md \*.MD | |
ignore: _build deps .git .github | |
# version: 0.28.1 |