File tree 1 file changed +8
-9
lines changed
1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -60,19 +60,18 @@ jobs:
60
60
uses : actions/checkout@v4
61
61
with :
62
62
path : typing-extensions-latest
63
- - name : Setup pdm for pydantic tests
64
- uses : pdm-project/setup-pdm@v4
65
- with :
66
- python-version : ${{ matrix.python-version }}
67
- allow-python-prereleases : true
63
+ - name : Install uv
64
+ uses : astral-sh/setup-uv@v3
65
+ - name : Set up Python ${{ matrix.python-version }}
66
+ run : uv python install ${{ matrix.python-version }}
68
67
- name : Add local version of typing_extensions as a dependency
69
- run : pdm add ./typing-extensions-latest
68
+ run : uv add --editable ./typing-extensions-latest
70
69
- name : Install pydantic test dependencies
71
- run : pdm install -G testing -G email
70
+ run : uv sync --group testing --group dev
72
71
- name : List installed dependencies
73
- run : pdm list -vv # pdm equivalent to ` pip list`
72
+ run : uv pip list
74
73
- name : Run pydantic tests
75
- run : pdm run pytest
74
+ run : uv run pytest
76
75
77
76
typing_inspect :
78
77
name : typing_inspect tests
You can’t perform that action at this time.
0 commit comments