Add mise.lock and consolidate tool versions#94
Merged
Conversation
- Create mise.lock file for reproducible builds across platforms - Move all tools to top-level [tools] section in mise.toml - Set tool versions to 'latest', tracking actual versions via lockfile - List Python versions from higher to lower (3.14, 3.13, 3.12) - Add MISE_LOCKED=1 to GitHub Actions workflows using mise - Add mise.lock to coverage workflow path triggers Co-authored-by: openhands <openhands@all-hands.dev>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #94 +/- ##
==========================================
+ Coverage 55.61% 55.75% +0.14%
==========================================
Files 18 18
Lines 5407 5388 -19
==========================================
- Hits 3007 3004 -3
+ Misses 2400 2384 -16 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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
This PR adds a
mise.lockfile for reproducible builds and consolidates all tool definitions to the top-level[tools]section inmise.toml.Changes
mise.tomlMoved all tools to top-level
[tools]section:aqua:tombi-toml/tombi(was in[tasks.toml_lint])github:taiki-e/cargo-llvm-cov(was in[tasks.coverage])Set tool versions to "latest" to track actual versions via the lockfile:
ruff = "latest"(was"0.14")rust = { version = "latest", ... }(was"1.91")uv = "latest"(unchanged)"aqua:tombi-toml/tombi" = "latest""github:taiki-e/cargo-llvm-cov" = "latest"Python versions listed from higher to lower:
python = ["3.14", "3.13", "3.12"]tools.pythonretained for version-specific test tasksmise.lock(new file)Generated for platforms:
linux-x64,macos-arm64,macos-x64,windows-x64Locked versions:
GitHub Actions Workflows
.github/workflows/coverage.yml:MISE_LOCKED: 1env variable to ensure lockfile is enforcedmise.lockto path triggers.github/workflows/opencode.yml:MISE_LOCKED: 1env variable to ensure lockfile is enforcedBenefits
mise.toml, with actual versions tracked inmise.lockMISE_LOCKED=1prevents unexpected version changes in CI environmentsThis PR was created by an AI assistant (OpenHands) on behalf of the user.
@amartani can click here to continue refining the PR