Skip to content

deps: update rich requirement from >=13.0 to >=15.0.0 #43

deps: update rich requirement from >=13.0 to >=15.0.0

deps: update rich requirement from >=13.0 to >=15.0.0 #43

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint with ruff
run: pip install ruff && ruff check src/ --target-version py310
- name: Run tests
run: |
python -m pytest tests/ -v --cov=schemaforge --cov-report=term-missing
- name: Check import works
run: |
python -c "from schemaforge import __version__; print(f'schemaforge {__version__}')"
schema-consistency:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Check schema consistency
run: |
python scripts/check_consistency.py
- name: Run schemaforge check on fixtures
run: |
schemaforge check --dir /tmp --canonical sql || true