We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f8bc0 commit 152a99fCopy full SHA for 152a99f
1 file changed
.github/workflows/ci.yml
@@ -8,7 +8,6 @@ on:
8
9
jobs:
10
ci:
11
- name: Continuous Integration
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
@@ -23,7 +22,12 @@ jobs:
23
22
with:
24
python-version: ${{ matrix.python-version }}
25
26
- - name: Install dependencies via UV
+ - name: Install UV
+ run: |
27
+ python -m pip install --upgrade pip
28
+ pip install uv
29
+
30
+ - name: Sync dependencies
31
run: uv sync
32
33
- name: Run Pre-commit checks
0 commit comments