We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f088a8 commit 501d837Copy full SHA for 501d837
2 files changed
.github/workflows/lint.yml
@@ -19,10 +19,11 @@ jobs:
19
with:
20
python-version: "3.11"
21
22
+ - name: Install uv
23
+ uses: astral-sh/setup-uv@v6
24
+
25
- name: Install linter
- run: |
- python -m pip install --upgrade pip
- pip install ruff
26
+ run: uv pip install --system ruff
27
28
- name: Run linter
29
run: |
.github/workflows/tests.yml
@@ -18,10 +18,11 @@ jobs:
18
- name: Install dependencies
- pip install -r requirements.txt
+ run: uv pip install --system -r requirements.txt
- name: Run tests
env:
0 commit comments