We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9cbd7c commit 596beb5Copy full SHA for 596beb5
2 files changed
.github/workflows/code-linting-checks.yaml
@@ -37,6 +37,10 @@ jobs:
37
shell: "bash"
38
run: "npm install -g @go-task/cli"
39
40
+ - name: "Install uv"
41
+ shell: "bash"
42
+ run: "curl --fail --location --silent --show-error https://astral.sh/uv/install.sh | sh"
43
+
44
- name: "Run lint task"
45
46
run: "task lint:check"
README.md
@@ -31,6 +31,7 @@ Follow the steps below to develop and contribute to the project.
31
* CMake 3.23 or higher
32
* Python 3.10 or higher
33
* [Task] 3.40.0 or higher
34
+* [uv] 0.7.10 or higher
35
36
## Set up
Initialize and update submodules:
@@ -118,3 +119,4 @@ task -a
118
119
Look for all tasks under the `lint` namespace (identified by the `lint:` prefix).
120
121
[Task]: https://taskfile.dev
122
+[uv]: https://docs.astral.sh/uv
0 commit comments