ci(pypi): Template-Guard (Trusted Publishing nicht konfiguriert) #17
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # B3-Pilot (2026-06-04): zentrale Reusable-CI aus coworkerz-ci, ADDITIV neben | |
| # der bestehenden ci.yml (kein Ersatz, kein BP-Touch) - verifiziert nur, dass | |
| # der workflow_call-Pfad flottentauglich gruen laeuft. SHA-gepinnt (nie @main). | |
| name: ci-reusable-pilot | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| gate: | |
| # Pin auf privates coworkerz-ci: SHA-Echtheit wird bei jedem Bump via | |
| # gh api Pre/Post verifiziert (zizmor laeuft offline, s. zizmor.yml). | |
| uses: marcohost33-maker/coworkerz-ci/.github/workflows/ci-python.yml@511ae1bd35092429ddb8fb08e340a3c2c8bc9406 | |
| with: | |
| python-version: "3.12" | |
| install-command: 'pip install -e ".[dev]" pytest-cov' | |
| ruff-target: "src tests benchmarks" | |
| mypy-target: "src/liouscope" | |
| pytest-args: "--cov=liouscope --cov-fail-under=80 -q" |