File tree Expand file tree Collapse file tree 6 files changed +38
-32
lines changed Expand file tree Collapse file tree 6 files changed +38
-32
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,14 @@ jobs:
32
32
with :
33
33
python-version : " 3.13"
34
34
35
+ - name : Install uv
36
+ uses : astral-sh/setup-uv@v5
37
+ with :
38
+ # Install a specific version of uv.
39
+ version : " 0.5.13"
40
+
35
41
- name : Install dependencies
36
- run : |
37
- python -m pip install --upgrade pip
38
- python -m pip install poetry
39
- poetry config virtualenvs.create false
40
- make dev-dependencies
42
+ run : make dev-dependencies
41
43
42
44
- name : Build static pages
43
45
run : make docs-build
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ jobs:
21
21
uses : actions/setup-python@v5
22
22
with :
23
23
python-version : " 3.13"
24
+ - name : Install uv
25
+ uses : astral-sh/setup-uv@v5
26
+ with :
27
+ # Install a specific version of uv.
28
+ version : " 0.5.13"
24
29
- name : Install dependencies
25
- run : |
26
- python -m pip install --upgrade pip
27
- python -m pip install poetry
28
- poetry config virtualenvs.create false
29
- make dev-dependencies
30
+ run : make dev-dependencies
30
31
- name : Check code style
31
- run : |
32
- make format
32
+ run : make format
Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ jobs:
21
21
uses : actions/setup-python@v5
22
22
with :
23
23
python-version : " 3.13"
24
+ - name : Install uv
25
+ uses : astral-sh/setup-uv@v5
26
+ with :
27
+ # Install a specific version of uv.
28
+ version : " 0.5.13"
24
29
- name : Install dependencies
25
- run : |
26
- python -m pip install --upgrade pip
27
- python -m pip install poetry
28
- poetry config virtualenvs.create false
29
- make dev-dependencies
30
+ run : make dev-dependencies
30
31
- name : Lint with ruff
31
32
run : make lint
Original file line number Diff line number Diff line change @@ -21,12 +21,13 @@ jobs:
21
21
uses : actions/setup-python@v5
22
22
with :
23
23
python-version : " 3.13"
24
+ - name : Install uv
25
+ uses : astral-sh/setup-uv@v5
26
+ with :
27
+ # Install a specific version of uv.
28
+ version : " 0.5.13"
24
29
- name : Install dependencies
25
- run : |
26
- python -m pip install --upgrade pip
27
- python -m pip install poetry
28
- poetry config virtualenvs.create false
29
- make dev-dependencies
30
+ run : make dev-dependencies
30
31
- name : Test & publish code coverage
31
32
32
33
env :
Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ jobs:
24
24
uses : actions/setup-python@v5
25
25
with :
26
26
python-version : " ${{ matrix.version }}"
27
+ - name : Install uv
28
+ uses : astral-sh/setup-uv@v5
29
+ with :
30
+ # Install a specific version of uv.
31
+ version : " 0.5.13"
27
32
- name : Install dependencies
28
- run : |
29
- python -m pip install --upgrade pip
30
- python -m pip install poetry
31
- poetry config virtualenvs.create false
32
- make dev-dependencies
33
+ run : make dev-dependencies
33
34
- name : Test with pytest
34
35
run : |
35
36
make ci-test
Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ jobs:
21
21
uses : actions/setup-python@v5
22
22
with :
23
23
python-version : " 3.13"
24
+ - name : Install uv
25
+ uses : astral-sh/setup-uv@v5
26
+ with :
27
+ # Install a specific version of uv.
28
+ version : " 0.5.13"
24
29
- name : Install dependencies
25
- run : |
26
- python -m pip install --upgrade pip
27
- python -m pip install poetry
28
- poetry config virtualenvs.create false
29
- make dev-dependencies
30
+ run : make dev-dependencies
30
31
- name : Check typing
31
32
run : make typing
You can’t perform that action at this time.
0 commit comments