Skip to content

add CRUDAdmin for admin panel #17

add CRUDAdmin for admin panel

add CRUDAdmin for admin panel #17

Workflow file for this run

name: Type Checking
on: [push, pull_request]
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install uv
run: pip install uv
- name: Create venv
run: uv venv
- name: Install package with dev dependencies
run: uv pip install -e ".[dev]"
- name: Run mypy
run: uv run mypy src --config-file pyproject.toml
env:
ENVIRONMENT: local
SECRET_KEY: test-secret-key-for-testing-only