Skip to content

Temporary fix for migration generation #77

Temporary fix for migration generation

Temporary fix for migration generation #77

name: Grace Framework CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
pip install mypy
- name: Run code format check
run: |
black --check .
isort --check-only .
- name: Run type checks
run: |
mypy .
- name: Run tests
run: |
pytest -v