add inspect_markdown to github action

Rename the job since it's no longer just link-checking.

Add a step that examines the 5 most recent issues (including any in
/draft) for common markdown problems.
This commit is contained in:
Eric Seppanen 2022-01-10 11:20:22 -08:00
parent b5bb2da4df
commit e60b4dbd76
1 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
name: Correctness Checks
on: [push, pull_request]
jobs:
Run-Link-Checker:
Run-Markdown-Checks:
runs-on: ubuntu-20.04
steps:
- name: checkout
@ -13,4 +13,7 @@ jobs:
update-pip: "false"
update-setuptools: "false"
update-wheel: "false"
- run: python3 tools/inspect_links.py --num-warn 5
- name: inspect_links
run: python3 tools/inspect_links.py --num-warn 5
- name: inspect_markdown
run: python3 tools/inspect_markdown.py --num-recent 5