There was an error while loading. Please reload this page.
1 parent 0fc538e commit f59f4fcCopy full SHA for f59f4fc
1 file changed
.github/workflows/quality.yml
@@ -0,0 +1,32 @@
1
+name: Quality
2
+
3
+on:
4
+ workflow_dispatch:
5
+ pull_request:
6
+ push:
7
+ branches:
8
+ - main
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
+ structural-contract:
15
+ name: Structural documentation
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v4
20
21
+ - uses: actions/setup-python@v5
22
+ with:
23
+ python-version: "3.11"
24
25
+ - name: Validate package manifest
26
+ run: python tests/check_unused_code.py --packages-only
27
28
+ - name: Validate documented structure
29
+ run: python tests/test_documentation_structure.py -v
30
31
+ - name: Compile Python sources
32
+ run: python -m compileall -q zapzap tests tools run.py
0 commit comments