File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,13 @@ jobs:
15
15
- name : Set up Python 3
16
16
uses : actions/setup-python@v5
17
17
with :
18
- python-version : ' 3.x'
19
- cache : " pip"
18
+ python-version : ' 3.13'
20
19
21
- - name : Install dependencies
22
- run : make deps/pre install
20
+ - name : Setup uv
21
+ uses : astral-sh/setup-uv@v5
22
+
23
+ - name : Install dependencies from uv.lock
24
+ run : make deps/install
23
25
24
26
- name : Run pytest
25
27
run : make test
Original file line number Diff line number Diff line change
1
+ dev :
2
+ uv sync --dev
1
3
2
- deps/pre :
3
- pip install pip-tools
4
-
5
- deps/compile :
6
- pip-compile
4
+ deps/upgrade :
5
+ uv lock --upgrade
7
6
8
7
deps/install :
9
- pip- sync
8
+ uv sync
10
9
11
10
install : deps/install
12
11
@@ -23,11 +22,10 @@ endif
23
22
all : download transform
24
23
25
24
test :
26
- PYTHONPATH= " src " pytest
25
+ uv run pytest
27
26
28
27
pre-commit :
29
28
pre-commit install
30
- pre-commit run --all-files
31
29
32
30
clean :
33
31
git clean -xdf
You can’t perform that action at this time.
0 commit comments