Simplify CI to debug - minimal test job
Some checks failed
CI / test (push) Failing after 11s
CI / build (push) Has been skipped

This commit is contained in:
2026-03-22 22:59:12 +00:00
parent 2266eb2b36
commit 7decabfb35

View File

@@ -20,14 +20,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install -e ".[dev]" python -m pip install -e .
python -m pip install ruff mypy types-requests python -m pip install pytest
- name: Run linting
run: python -m ruff check src/
- name: Run type checking
run: python -m mypy src/schema2mock/ || true
- name: Run tests - name: Run tests
run: python -m pytest tests/unit/ tests/integration/ -v run: python -m pytest tests/unit/ tests/integration/ -v