From 3e71ef5b921efc538b68d87a6cb9c39bf9cca8cc Mon Sep 17 00:00:00 2001 From: gowthamrao <13936600+gowthamrao@users.noreply.github.com> Date: Fri, 13 Mar 2026 12:16:21 +0000 Subject: [PATCH] feat: add zensical docs build step to ci and publish pipelines --- {{cookiecutter.project_slug}}/.github/workflows/ci.yml | 4 ++++ {{cookiecutter.project_slug}}/.github/workflows/publish.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml index b9be26f..78030d4 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/ci.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/ci.yml @@ -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: diff --git a/{{cookiecutter.project_slug}}/.github/workflows/publish.yml b/{{cookiecutter.project_slug}}/.github/workflows/publish.yml index dbb3448..ab0468f 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/publish.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/publish.yml @@ -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