Skip to content

Commit ab84815

Browse files
Remove unused commented GitHub Pages deployment from CI configuration (#35)
- Deleted commented deploy-docs job from .github/workflows/ci.yml - Removes 48 lines of unused GitHub Pages deployment configuration - Keeps CI workflow focused on relevant build, test, and package tasks - Prevents confusion and potential unintended deployments Fixes #7 Co-authored-by: florath-ai-assistant[bot] <Andreas.Florath@telekom.de>
1 parent 09c3e9f commit ab84815

File tree

1 file changed

+0
-48
lines changed

1 file changed

+0
-48
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -447,54 +447,6 @@ jobs:
447447
name: benchmark-results
448448
path: benchmark.json
449449

450-
# Disabled until GitHub Pages is configured
451-
# To enable: Go to repository Settings → Pages → Source → GitHub Actions
452-
# deploy-docs:
453-
# name: Deploy Documentation
454-
# runs-on: ubuntu-latest
455-
# if: github.ref == 'refs/heads/main' && github.event_name == 'push'
456-
# needs: [lint-and-type-check, test, build]
457-
#
458-
# permissions:
459-
# contents: read
460-
# pages: write
461-
# id-token: write
462-
#
463-
# steps:
464-
# - uses: actions/checkout@v4
465-
#
466-
# - name: Set up Python 3.11
467-
# uses: actions/setup-python@v5
468-
# with:
469-
# python-version: "3.11"
470-
#
471-
# - name: Install dependencies
472-
# run: |
473-
# python -m pip install --upgrade pip
474-
# pip install -e .[docs] || pip install -e .[dev]
475-
#
476-
# - name: Build documentation
477-
# run: |
478-
# # Generate coverage reports for docs
479-
# pytest --cov=src --cov-report=html tests/ || true
480-
# mkdir -p docs/coverage
481-
# cp -r htmlcov/* docs/coverage/ || true
482-
#
483-
# # Generate API documentation
484-
# mkdir -p docs/api
485-
# # Add sphinx-apidoc or similar here if available
486-
#
487-
# - name: Setup Pages
488-
# uses: actions/configure-pages@v5
489-
#
490-
# - name: Upload documentation
491-
# uses: actions/upload-pages-artifact@v3
492-
# with:
493-
# path: 'docs/'
494-
#
495-
# - name: Deploy to GitHub Pages
496-
# id: deployment
497-
# uses: actions/deploy-pages@v4
498450

499451
test-pypi-publish:
500452
name: Test PyPI Publishing (TestPyPI)

0 commit comments

Comments
 (0)