Commit d8730ad 1 parent 8782c40 commit d8730ad Copy full SHA for d8730ad
File tree 2 files changed +14
-7
lines changed
2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -37,17 +37,24 @@ jobs:
37
37
- os : " ubuntu-latest"
38
38
python-version : " pypy-3.9"
39
39
40
+ env :
41
+ UV_PYTHON : ${{ matrix.python-version }}
42
+
40
43
steps :
41
- - uses : actions/checkout@v3
44
+ - uses : actions/checkout@v4
45
+
46
+ - name : Install uv
47
+ uses : astral-sh/setup-uv@v5
48
+ with :
49
+ enable-cache : true
42
50
43
51
- name : Set up Python ${{ matrix.python-version }}
44
- uses : actions/setup-python@v4
52
+ uses : actions/setup-python@v5
45
53
with :
46
54
python-version : ${{ matrix.python-version }}
47
55
48
- - name : Install test dependencies
49
- run : |
50
- pip install -e .[dev]
56
+ - name : Install the project
57
+ run : uv sync --all-extras --dev
51
58
52
59
- name : Test
53
60
run : |
Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- uses : actions/checkout@v3
14
- - uses : actions/setup-python@v3
15
- - uses : pre-commit/action@v3.0.0
14
+ - uses : actions/setup-python@v5
15
+ - uses : pre-commit/action@v3
You can’t perform that action at this time.
0 commit comments