Skip to content

Commit

Permalink
add inspect_markdown to github action
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ericseppanen committed Jan 10, 2022
1 parent b5bb2da commit e60b4db
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

0 comments on commit e60b4db

Please sign in to comment.