forked from eunomia-bpf/bpf-developer-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (24 loc) · 923 Bytes
/
Copy pathcheck-docs.yml
File metadata and controls
27 lines (24 loc) · 923 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
27
name: Check documentation
on:
push:
branches: ["main"]
pull_request:
permissions:
contents: read
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Test documentation scripts
run: |
python3 -m unittest scripts.test_check_internal_links scripts.test_generate_toc scripts.test_generate_compatibility
python3 .agents/skills/write-bpf-production-tutorial/scripts/test_sync_source_blocks.py
- name: Regenerate documentation indexes
run: |
python3 scripts/generate_toc.py
python3 scripts/generate_compatibility.py
- name: Verify generated documentation is current
run: git diff --exit-code -- README.md README.zh.md src/SUMMARY.md src/SUMMARY.zh.md src/compatibility.md src/compatibility.zh.md
- name: Check relative Markdown links
run: python3 scripts/check_internal_links.py