Skip to content

Commit 0d47dbd

Browse files
committed
ci: add docs quality workflow
1 parent 95e7c08 commit 0d47dbd

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/ci-docs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: ci-docs
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
docs-quality:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: '3.12'
20+
- name: Verify repository structure
21+
run: python scripts/verify_repo.py
22+
- name: Run structure tests
23+
run: python -m pytest tests

0 commit comments

Comments
 (0)