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
4 changes: 4 additions & 0 deletions {{cookiecutter.project_slug}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ jobs:
run: uv run pytest --cov=src --cov-report=xml
shell: bash

- name: Build docs
run: uv run zensical build
shell: bash

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions {{cookiecutter.project_slug}}/.github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
enable-cache: true
python-version: '3.14'

- name: Build Docs
run: uv run zensical build
shell: bash

- name: Build package
run: uv build
shell: bash
Expand Down