File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ jobs:
1414 - uses : actions/checkout@v4
1515 - uses : actions/setup-python@v5
1616 with :
17- python-version : ' 3.11 '
18- - name : Python version
19- run : python --version
20- - name : PDM installation
21- run : pip install --user pdm
22- - name : Install devel dependencies
23- run : pdm install --dev
17+ python-version : ' 3.12 '
18+ - name : Install uv
19+ uses : astral-sh/setup-uv@v3
20+ with :
21+ version : " latest "
22+ - name : Install dependencies
23+ run : uv sync --extra dev
2424 - name : Black version
25- run : pdm run black --version
25+ run : uv run black --version
2626 - name : Black check
27- run : pdm run black . --check
27+ run : uv run black . --check
Original file line number Diff line number Diff line change 9292 - name : Install dependencies
9393 run : |
9494 echo "Installing project dependencies..."
95- uv sync --group dev --group test
96-
95+ uv sync --extra dev --extra test
96+
9797 echo "Installing lightspeed providers package..."
9898 uv pip install -e .
9999
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
2424
2525RUN uv -h
2626
27- RUN uv sync --locked --group dev --group test
27+ RUN uv sync --locked --extra dev --extra test
2828
2929# Install the lightspeed providers package
3030RUN uv pip install -e .
You can’t perform that action at this time.
0 commit comments