Compare commits
2 commits
c452c6c0d5
...
1012947b67
| Author | SHA1 | Date | |
|---|---|---|---|
| 1012947b67 | |||
| 5d1e9c27e7 |
2 changed files with 2 additions and 1 deletions
|
|
@ -8,6 +8,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
lint_and_test:
|
lint_and_test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
continue-on-error: true
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/astral-sh/uv:alpine
|
image: ghcr.io/astral-sh/uv:alpine
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -18,6 +19,7 @@ jobs:
|
||||||
- run: uv python install # Gets Python version from pyproject.toml
|
- run: uv python install # Gets Python version from pyproject.toml
|
||||||
- run: uv sync
|
- run: uv sync
|
||||||
- run: uv run ruff check
|
- run: uv run ruff check
|
||||||
|
- run: uv run ruff format
|
||||||
- run: uv run pytest test
|
- run: uv run pytest test
|
||||||
env:
|
env:
|
||||||
ENVIRONMENT: testing
|
ENVIRONMENT: testing
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,6 @@ from src.user.schemas import UserResponse, OIDCClaims
|
||||||
from src.user.dependencies import (
|
from src.user.dependencies import (
|
||||||
user_model_claims_dependency,
|
user_model_claims_dependency,
|
||||||
user_model_query_dependency,
|
user_model_query_dependency,
|
||||||
user_model_body_dependency,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
from src.auth.dependencies import super_admin_dependency
|
from src.auth.dependencies import super_admin_dependency
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue