Fix CI: add linting step back
Some checks failed
CI / test (push) Failing after 14s

This commit is contained in:
2026-02-04 18:59:52 +00:00
parent 7e5b37eb71
commit e1c18d0451

View File

@@ -14,8 +14,16 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install and test
- name: Install dependencies
run: |
cd app
pip install -e ".[dev]"
pytest tests/
pip install ruff
- name: Run tests
run: |
cd app
pytest tests/ -v --cov=src --cov-report=term-missing
- name: Check linting
run: |
cd app
ruff check src/