chore(ci): pilot python-app-ci gold-standard reusable#119
Merged
Conversation
Replace the separate lint/test/build reusable-call jobs in ci.yml and the audit job in security.yml with one call to the python-app-ci meta-reusable (lint/type/test + build + audit + gitleaks + dependency-review). Bespoke jobs (shell-tests, docs, integration-e2e) are kept as siblings. CodeQL stays off (repo uses CodeQL default setup). Pinned to @feat/python-gold-standard until netresearch/.github#252 merges; flip to @main afterwards. Signed-off-by: Sebastian Mendel <sebastian.mendel@netresearch.de>
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned Files
|
Signed-off-by: Sebastian Mendel <sebastian.mendel@netresearch.de>
Signed-off-by: Sebastian Mendel <sebastian.mendel@netresearch.de>
Signed-off-by: Sebastian Mendel <sebastian.mendel@netresearch.de>
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



What
Pilot the new
python-app-ci.ymlgold-standard meta-reusable fromnetresearch/.githubon this repo.One
app-cicall now composes:python -m build+twine checkThis replaces the former separate
lint/test/buildreusable-call jobs inci.ymland theauditjob insecurity.yml(deleted). Bespoke jobsshell-tests,docs,integration-e2eare kept unchanged as siblings.Reference pinning
The meta is pinned to
netresearch/.github@feat/python-gold-standard(not yet onmain). Flip to@mainafter netresearch/.github#252 merges.Input mapping (repo commands → meta inputs)
package-managerpippython-versions["3.14"]os-versionsinstall-cmdpip install -r requirements-dev.txtlint-cmdtype-check-cmdmypy cli_audit --ignore-missing-imports || true(kept non-blocking)test-cmdenable-buildpython -m build/twine check dist/*)run-banditenable-gitleaksGITLEAKS_LICENSEavailable)enable-codeqlPilot findings / notes for reviewers
coverage-os/coverage-python-version; the underlyingpython-ci.ymldefaultscoverage-python-versionto3.13. This repo is3.14-only, so the Codecov upload gate never matches and coverage will not upload despitecoverage-upload: true. Recommend the meta forward those two inputs (or default the coverage cell to the first matrix entry).security.ymlran the audit on a weekly cron (0 6 * * 1) in addition to push/PR. The meta/ci.ymlruns on push/PR only. If the weekly scheduled audit should be preserved, add aschedule:trigger toci.ymlor keep a slimmed schedule-onlysecurity.yml.cijob means flake8 + mypy now also run on macOS/windows cells (previously ubuntu-only); tests already ran on all three.Do not merge
Pilot only. No branch-protection changes (repo has no required status checks configured).