There was an error while loading. Please reload this page.
1 parent 14c00f4 commit 35d44f0Copy full SHA for 35d44f0
1 file changed
.github/workflows/lint-test.yml
@@ -16,18 +16,17 @@ jobs:
16
uses: actions/setup-python@v6
17
with:
18
python-version: "3.13"
19
-
20
- - name: Install uv
21
- run: pip install uv
+ # Use the setup-python action's built-in support for uv and caching
+ cache: "uv"
22
23
- name: Install dependencies
24
run: uv sync --dev
25
26
- name: Run linter
27
- run: task lint
+ run: uv run task lint
28
29
- name: Run tests with coverage
30
- run: task testcov
+ run: uv run task testcov
31
32
- name: Upload coverage artifact
33
uses: actions/upload-artifact@v5
0 commit comments