File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,14 @@ jobs:
20
20
steps :
21
21
- uses : actions/checkout@v3
22
22
23
- - name : Set up Python ${{ matrix.python-version }}
24
- uses : actions /setup-python @v5
23
+ - name : Install uv
24
+ uses : astral-sh /setup-uv @v5
25
25
with :
26
26
python-version : ${{ matrix.python-version }}
27
27
28
+ - name : Set up Python
29
+ run : uv python install
30
+
28
31
- name : Install dependencies
29
32
run : make install-lint
30
33
@@ -48,11 +51,14 @@ jobs:
48
51
steps :
49
52
- uses : actions/checkout@v3
50
53
51
- - name : Set up Python ${{ matrix.python-version }}
52
- uses : actions /setup-python @v5
54
+ - name : Install uv
55
+ uses : astral-sh /setup-uv @v5
53
56
with :
54
57
python-version : ${{ matrix.python-version }}
55
58
59
+ - name : Set up Python
60
+ run : uv python install
61
+
56
62
- name : Install dependencies
57
63
run : make install
58
64
You can’t perform that action at this time.
0 commit comments