We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95e7c08 commit 0d47dbdCopy full SHA for 0d47dbd
1 file changed
.github/workflows/ci-docs.yml
@@ -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