Skip to content

Sbp 275 add username column in db UI #173

Sbp 275 add username column in db UI

Sbp 275 add username column in db UI #173

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install UV
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: |
uv sync --all-extras
- name: Run Ruff
run: uv run ruff check app tests
- name: Run Black
run: uv run black --check app tests
- name: Run MyPy
run: uv run mypy app --ignore-missing-imports