Feat: adds minimal GitHub actions#14
Merged
Merged
Conversation
- currently just test and build - removes stale circleci config
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.
Summary
Replaces the stale CircleCI setup with GitHub Actions workflows for CI and release versioning. CI now uses
uvwith a committeduv.lockfor deterministic dependency resolution, and merged PRs tomaintrigger the shared AllenNeuralDynamics uv release workflow to bump, commit, and tag versions.Changes
.github/workflows/ci.yml.3.9,3.10,3.11,3.12, and3.13.uv run --frozen --extra test python -m pytesttests/package is not included in the built wheel..github/workflows/release.yml.main.AllenNeuralDynamics/.github/.github/workflows/release-bump-version-uv.yml@mainpyproject.tomlanduv.lock, commits the version bump, and pushes av<version>tag.uv.lockso CI installs are reproducible..gitignoreso GitHub workflow files can be tracked and.pytest_cache/is ignored..circleci/config.yml.Why CircleCI Was Removed
The existing CircleCI workflow was stale and no longer matched the project setup. It attempted to install dependencies from
requirements.txt, but this repo now usespyproject.tomlanduv, and there is norequirements.txtpresent.Removing CircleCI makes GitHub Actions the single CI source of truth and aligns the workflows with the current package metadata and lockfile-based dependency management.
Validation
Local checks run:
uv run --frozen --extra test python -m pytest uv build uv version --bump patch --dry-run --output-format json git diff --checkResult:
The warning is from the existing pandas
delim_whitespaceusage and is not introduced by this PR.