-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Bibop recipe for uv | ||
# See more: https://kaos.sh/bibop | ||
|
||
pkg uv | ||
|
||
fast-finish yes | ||
lock-workdir no | ||
|
||
command "-" "Check environment" | ||
app uv | ||
app uvx | ||
|
||
command "uv python install 3.10" "Install python" | ||
exit 0 | ||
|
||
command "uv init uv-example" "Init example project" | ||
exit 0 | ||
|
||
command "-" "Set current directory to example project" | ||
chdir uv-example | ||
exist pyproject.toml | ||
|
||
command "uv add ruff" "Add ruff" | ||
exit 0 | ||
exist uv.lock | ||
|
||
command "uv run ruff check" "Run ruff" | ||
exit 0 |