GitHub Actions Workflows¶
Your generated project comes with five workflow files and a Dependabot config, all security-hardened out of the box.
CI (ci.yml)¶
Runs on every push to main and on pull requests. Five jobs:
- Lint - checks formatting (
ruff format --check) and lint rules (ruff check) - Type check - runs ty for static type checking
- Test - runs pytest with coverage across Python 3.12, 3.13, and 3.14
- Coverage - combines coverage data from all Python versions and posts the report to the GitHub Actions step summary
- All checks pass - a single status check for branch protection (uses alls-green)
You can also trigger it manually from the Actions tab (workflow_dispatch).
Publish (publish.yml)¶
Runs when you push a tag matching v* (e.g., v0.1.0). Two jobs:
- Build - builds the sdist and wheel with
uv build, uploads them as artifacts - Publish - downloads the artifacts, generates Sigstore build attestations, and publishes to PyPI
Publishing uses Trusted Publishers, so there are no API tokens to manage. PyPI verifies the package came from your GitHub repo's workflow via OIDC.
First-time setup: If you opt into GitHub setup, the post-generation hook
attempts to create the pypi environment before the first push. If you skip
setup or that step fails, create the environment manually. You still need to
register your repo as a trusted publisher on PyPI. See
PyPI Release Checklist for the steps.
Documentation (docs.yml)¶
Runs on push to main when the repository variable
DOCS_DEPLOYMENT_ENABLED is true. Two jobs:
- Build - builds the documentation site with
zensical build - Deploy - deploys to GitHub Pages
First-time setup: Public GitHub setup enables Pages by default. Private
setup asks separately and defaults to off because a Pages site can be public
even when its repository is private, and the feature may require a paid plan.
The generator sets DOCS_DEPLOYMENT_ENABLED to match that choice, so the
workflow stays paused instead of failing when Pages is off.
To enable deployment later, review those visibility implications, go to Settings > Pages, set the source to GitHub Actions, then set the repository variable:
Local preview and just docs-build work regardless of this deployment
setting.
CodeQL (codeql.yml)¶
Runs on pushes to main, pull requests, and a weekly schedule for public
repositories. Uses GitHub's CodeQL engine with the
security-extended query suite, which adds medium-precision security checks
(taint tracking, injection detection) on top of the default high-precision set.
Results appear in your repo's Security > Code scanning tab.
CodeQL does dataflow analysis that linters can't: it traces user input across function calls and files to find SQL injection, command injection, SSRF, path traversal, and similar vulnerabilities.
Private and internal repositories skip this job by default because CodeQL
requires GitHub Code Security there. After enabling Code Security in
Settings > Advanced Security, create the repository Actions variable
CODE_SECURITY_ENABLED with the value true to run CodeQL and upload zizmor
results.
If your package includes compiled code, the workflow has inline comments showing how to add c-cpp, go, java-kotlin, or swift and switch to autobuild.
Zizmor (zizmor.yml)¶
Runs on pushes and pull requests that touch .github/workflows/. Zizmor audits your GitHub Actions workflows for security issues: excessive permissions, unpinned actions, credential exposure, cache poisoning risks, and other patterns that tools like CodeQL don't cover (since CodeQL analyzes your code, not your CI configuration).
Zizmor still runs for private repositories without GitHub Code Security and
prints its findings in the workflow log. Setting CODE_SECURITY_ENABLED=true
after enabling Code Security also uploads those findings to code scanning.
Dependabot (dependabot.yml)¶
Checks weekly for newer uv dependencies and GitHub Actions, then opens PRs to update them. Since all actions are pinned by SHA, Dependabot is how those pins stay current.
A 7-day cooldown prevents Dependabot from proposing updates the moment a new version drops. This gives the community time to discover regressions or compromised releases before your project pulls them in.
Security hardening¶
All workflows follow these practices:
- SHA-pinned actions - every
uses:references a full commit SHA, not a mutable tag. This prevents a compromised action from injecting code into your builds. - Minimal permissions -
permissions: {}at the workflow level, with specific permissions granted only to jobs that need them. - No persisted credentials -
persist-credentials: falseon all checkouts, so theGITHUB_TOKENisn't left in the git config after checkout. - No cache in release builds - the publish workflow disables uv's cache. GitHub Actions caches aren't isolated between workflows, so a compromised low-privilege workflow could poison the cache and inject code into your release artifacts. Building from scratch on every release eliminates this vector.
- Concurrency controls - CI cancels redundant runs on the same PR. Publish uses a concurrency group to prevent overlapping releases. Docs deployments don't cancel in-flight runs to avoid a half-deployed site.