Skip to content

Feat/mobile user crud block auth #76

Feat/mobile user crud block auth

Feat/mobile user crud block auth #76

Workflow file for this run

name: CI
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
jobs:
lint-and-typecheck:
name: Lint & Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Lint
run: uv run ruff check .
- name: Type Check
run: uv run mypy .
# - name: Run tests
# run: uv run pytest --maxfail=1 --disable-warnings