-
-
Notifications
You must be signed in to change notification settings - Fork 107
24 lines (24 loc) · 634 Bytes
/
test-doc.yml
File metadata and controls
24 lines (24 loc) · 634 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
name: test-doc
on: [push, pull_request, workflow_dispatch]
jobs:
test-doc:
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r tests-requirements.txt
npm install -g remark-cli remark-validate-links
- name: Check the doc
run: |
./scripts/check-doc.sh