Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: astral-sh/setup-uv@v3
- run: uv python install 3.14
- run: |
uv sync --all-extras --frozen --no-install-project
uv sync --all-extras --all-groups --frozen --no-install-project
uv run ruff format . --check
uv run ruff check . --no-fix
uv run mypy .
Expand All @@ -47,7 +47,7 @@ jobs:
- uses: astral-sh/setup-uv@v3
- run: uv python install 3.14
- run: |
uv sync --all-extras --frozen --no-install-project
uv sync --all-extras --all-groups --frozen --no-install-project
uv run alembic upgrade head
uv run pytest . --cov=. --cov-report xml
env:
Expand Down
3 changes: 2 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ build:

install:
uv lock --upgrade
uv sync --all-extras --no-install-project --frozen
uv sync --all-extras --all-groups --no-install-project --frozen

lint:
uv run end-of-file-fixer .
uv run ruff format .
uv run ruff check . --fix
uv run mypy .
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ dev = [
"pytest-cov",
"pytest-asyncio",
"asgi_lifespan",
]
lint = [
"ruff",
"mypy",
"end-of-file-fixer",
"asyncpg-stubs",
]

Expand Down
Loading