We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f78764 commit ce9ca2fCopy full SHA for ce9ca2f
1 file changed
.github/workflows/workflow.yml
@@ -18,7 +18,7 @@ jobs:
18
uses: actions/checkout@v6
19
20
- name: Set up Python
21
- uses: actions/setup-python@v6
+ uses: actions/setup-python@v5
22
with:
23
python-version: '3.x'
24
@@ -27,6 +27,20 @@ jobs:
27
python -m pip install --upgrade pip
28
pip install build
29
30
+ - name: Build docs
31
+ run: |
32
+ pip install -r docs/requirements.txt
33
+ cd docs && make html
34
+
35
+ - name: Clean unnecessary files before build
36
37
+ echo "🧹 Gereksiz dosyalar temizleniyor..."
38
+ find . -type d -name "__pycache__" -exec rm -rf {} + 2>/dev/null || true
39
+ find . -name "*.pyc" -delete 2>/dev/null || true
40
+ find . -name "*.pyo" -delete 2>/dev/null || true
41
+ rm -rf build/ dist/ *.egg-info .pytest_cache .mypy_cache
42
+ echo "✅ Temizlik tamamlandı"
43
44
- name: Build the package
45
run: python -m build
46
0 commit comments