Add uv check
command to validate pyproject.toml
uv
configuration
#9653
Labels
enhancement
New feature or improvement to existing functionality
Would it make sense to add some equivalent to
poetry check
intouv
?The idea is that you can add this to CI and if a PR makes any change to the
uv
configuration that is invalid, this will fail the CI.Looking at Poetry's implementation:
It currently validates:
pyproject.toml
uv lock --locked
)poetry check --lock
verify that apoetry.lock
exists (e.g., that someone didn't accidentally delete it)In general, most of these checks are useful to enforce in CI for many projects. Would it make sense for
uv
to have an equivalent of some kind ofcheck
command?The text was updated successfully, but these errors were encountered: