Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,32 +38,3 @@ jobs:
uses: actions/upload-artifact@v4.6.2
with:
path: dist/*

generate-docs:
name: Generate Documentation
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.2

- name: Setup Python
uses: actions/setup-python@v5.6.0
with:
python-version: 3.11

- name: Setup Poetry
uses: threeal/setup-poetry-action@v1.2.0

- name: Cache Dependencies
id: cache-deps
uses: actions/cache@v4.2.3
with:
key: poetry-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
path: .venv

- name: Install Dependencies
if: steps.cache-deps.outputs.cache-hit != 'true'
run: poetry install --with dev

- name: Generate Documentation
run: poetry run poe docs
52 changes: 0 additions & 52 deletions .github/workflows/deploy.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@

*.egg-info
__pycache__
apidocs
dist
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ The Python Starter is a [GitHub repository template](https://docs.github.com/en/
- Project and dependency management with [Poetry](https://python-poetry.org/), supplemented by [Poe the Poet](https://poethepoet.natn.io/index.html) for task management.
- Code formatting and linting with [Ruff](https://github.com/astral-sh/ruff), leveraging all recommended rules for enhanced code quality.
- Testing framework powered by [Pytest](https://docs.pytest.org/en/7.4.x/), complete with support for test coverage checks.
- API documentation generation with [pydoctor](https://pydoctor.readthedocs.io/en/latest/index.html) and automated deployment to [GitHub Pages](https://pages.github.com/).
- [GitHub Actions](https://github.com/features/actions) support with multiple workflows for continuous integration (CI) and continuous delivery (CD).
- Automated dependency update checks with [Dependabot](https://docs.github.com/en/code-security/dependabot).

Expand Down
Loading
Loading