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:
3232 with :
3333 python-version : " 3.13"
3434
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+
3541 - 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
4143
4244 - name : Build static pages
4345 run : make docs-build
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ jobs:
2121 uses : actions/setup-python@v5
2222 with :
2323 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"
2429 - 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
3031 - 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:
2121 uses : actions/setup-python@v5
2222 with :
2323 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"
2429 - 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
3031 - name : Lint with ruff
3132 run : make lint
Original file line number Diff line number Diff line change @@ -21,12 +21,13 @@ jobs:
2121 uses : actions/setup-python@v5
2222 with :
2323 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"
2429 - 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
3031 - name : Test & publish code coverage
31323233 env :
Original file line number Diff line number Diff line change @@ -24,12 +24,13 @@ jobs:
2424 uses : actions/setup-python@v5
2525 with :
2626 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"
2732 - 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
3334 - name : Test with pytest
3435 run : |
3536 make ci-test
Original file line number Diff line number Diff line change @@ -21,11 +21,12 @@ jobs:
2121 uses : actions/setup-python@v5
2222 with :
2323 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"
2429 - 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
3031 - name : Check typing
3132 run : make typing
You can’t perform that action at this time.
0 commit comments