[wf] max-parallel in certifier-wf #1923
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
# workflow to run the acme2certifier unittest suite | |
name: Markdown check | |
on: | |
push: | |
pull_request: | |
branches: [ devel ] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 2 * * 6' | |
jobs: | |
markdown-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
- name: Lint changelog file root | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
args: '*.md' | |
- name: Lint changelog file docs | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
args: './docs/*.md' | |
- name: Lint changelog file docker | |
uses: avto-dev/markdown-lint@v1 | |
with: | |
args: './examples/Docker/*.md' |