Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.21 KB

File metadata and controls

28 lines (20 loc) · 1.21 KB

GitHub Actions

The repository includes local composite actions and gated workflows.

Local actions

  • .github/actions/setup-uv-python
  • .github/actions/npmctl-check
  • .github/actions/npmctl-schema-gate
  • .github/actions/npmctl-ssot-gate
  • .github/actions/npmctl-real-npm-e2e
  • .github/actions/npmctl-release-build

Workflows

  • CI: lint, format, YAML lint, pytest, schema gate.
  • Docs and SSOT: runs after CI succeeds.
  • Python Matrix: runs pytest on Python 3.10, 3.11, 3.12, 3.13, and 3.14.
  • Live NPM Gate: starts Nginx Proxy Manager in Docker and runs opt-in pytest E2E.
  • Release: dispatches CI, Docs/SSOT, Python Matrix, and Live NPM Gate, waits for all to pass on the release ref, then builds. When PyPI publishing is enabled, PyPI upload must succeed before the GitHub Release is created or updated. Dispatch checkboxes control GitHub Release creation and PyPI publishing.

Each workflow uses concurrency groups to avoid overlapping mutable runs.

PyPI Publishing

The Release workflow can publish Python distributions after the required release gates pass. Publication happens before the GitHub Release step so a package publish failure does not leave a GitHub-only release artifact behind.