File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,18 @@ jobs:
44
44
luarocks \
45
45
ninja-build \
46
46
pkg-config \
47
- python3-pip \
48
- python3-setuptools \
49
- python3-wheel \
50
47
rcs \
51
48
strace \
52
49
unzip \
53
50
zlib1g-dev
54
- - name : Provision Python Packages
55
- run : python3 -m pip install -r $GITHUB_WORKSPACE/scripts/requirements.txt
51
+
52
+ - uses : astral-sh/setup-uv@v6
53
+
54
+ - name : Install Python Packages
55
+ run : |
56
+ uv venv
57
+ uv pip install -r ./scripts/requirements.txt
58
+
56
59
- name : cargo fmt --check
57
60
run : |
58
61
export RUSTFLAGS="-D warnings"
78
81
# causing tons of errors, so don't set that.
79
82
# `test_translator.py` does not rebuild,
80
83
# so changing `RUSTFLAGS` will not trigger a full rebuild.
81
- ./scripts/test_translator.py tests/
84
+ uv run ./scripts/test_translator.py tests/
You can’t perform that action at this time.
0 commit comments