ci: add CI workflow + clear ruff backlog#6
Merged
Conversation
added 2 commits
April 8, 2026 15:53
Two things in one PR:
1. New .github/workflows/ci.yml with three jobs:
- lint: ruff check + ruff format --check
- test: pytest matrix on Python 3.10/3.11/3.12
- leak-guard: regex scan for editable-install pseudo-pins, host paths,
API keys, and private keys; runs on every push and PR
2. Cleared 19 ruff issues from existing source (17 F401 unused imports
+ 2 F841 unused locals, all auto-fixed). Ran ruff format. 84 tests
still pass.
afterburn previously had no CI configured. The leak-guard job is the
same drop-in template the other ecosystem repos (cacp, standra, axiom)
are getting in parallel — it catches the kind of /home/<user>/ leakage
we found in the recent ecosystem audit.
|
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.




Two things in one PR.
1. New
.github/workflows/ci.ymlThree jobs run on every push and PR:
ruff check+ruff format --check2. Cleared 19 ruff issues
ruff formatacross afterburn/ and tests/84 tests still pass.
Why
afterburn previously had no CI configured. The leak-guard job is the same drop-in template the other ecosystem repos (cacp, standra, axiom) are getting in parallel — it catches the kind of
/home/<user>/leakage we found in the recent ecosystem audit.Test plan
pytest tests/— 84 passingruff check afterburn/ tests/— cleanruff format --check afterburn/ tests/— clean