Release 2.6.1 - Version detecting with data.win instead of exe #178
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 markdown files' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: [main, release] | |
jobs: | |
lint-markdown: | |
name: Lint markdown file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint markdown files | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
args: '.' | |
config: '.markdownlint.json' |