-
Notifications
You must be signed in to change notification settings - Fork 0
ci(B3-Pilot): Reusable-CI aus coworkerz-ci (additiv) #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # 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: | ||
| uses: marcohost33-maker/coworkerz-ci/.github/workflows/ci-python.yml@69d3bae0bd54792f499b01c1b6e1e8f6b452742b | ||
| with: | ||
| python-version: "3.12" | ||
| install-command: 'pip install -e ".[dev]" pytest-cov' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
With this install command, the pilot workflow runs Useful? React with 👍 / 👎. |
||
| ruff-target: "src tests benchmarks" | ||
| mypy-target: "src/liouscope" | ||
| pytest-args: "--cov=liouscope --cov-fail-under=80 -q" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new reusable workflow reference is SHA-pinned, but it omits the version comment required by
AGENTS.md(every action reference is @<full-sha> # vX.Y.Z). In workflow/security reviews, the missing human-readable tag makes it harder to verify what vetted release this cross-repository CI workflow is executing; please add the corresponding# v...comment or pin a tagged release SHA that has one.Useful? React with 👍 / 👎.