forked from rust-lang/this-week-in-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (24 loc) · 753 Bytes
/
checks.yml
File metadata and controls
26 lines (24 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Correctness Checks
on: [push, pull_request]
permissions:
contents: read
jobs:
Run-Markdown-Checks:
name: Run Markdown Checks
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Python dependencies
uses: py-actions/py-dependency-install@9c419aa98bfb42280bdae2b0a736befd9b01e3b1 # v4
with:
path: "tools/requirements.txt"
update-pip: "false"
update-setuptools: "false"
update-wheel: "false"
- name: inspect_links
run: python3 tools/inspect_links.py --num-warn 5
- name: inspect_markdown
run: python3 tools/inspect_markdown.py --num-recent 5