File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ jobs:
21
21
with :
22
22
python-version : " 3.12"
23
23
- run : |
24
- pip install -U pip poetry
25
- poetry install --sync --no-root
26
- poetry run ruff format . --check
27
- poetry run ruff check . --no-fix
28
- poetry run mypy .
24
+ curl -LsSf https://astral.sh/uv/install.sh | sh
25
+ uv sync --all-extras --frozen -- no-install-project
26
+ uv run ruff format . --check
27
+ uv run ruff check . --no-fix
28
+ uv run mypy .
29
29
30
30
pytest :
31
31
runs-on : ubuntu-latest
@@ -50,10 +50,10 @@ jobs:
50
50
with :
51
51
python-version : " 3.12"
52
52
- run : |
53
- pip install -U pip poetry
54
- poetry install --sync --no-root
55
- poetry run alembic upgrade head
56
- poetry run pytest
53
+ curl -LsSf https://astral.sh/uv/install.sh | sh
54
+ uv sync --all-extras --frozen -- no-install-project
55
+ uv run alembic upgrade head
56
+ uv run pytest
57
57
env:
58
58
ENVIRONMENT: dev
59
59
PYTHONDONTWRITEBYTECODE: 1
You can’t perform that action at this time.
0 commit comments