Fix CI: add linting with pip install ruff
Some checks failed
CI / test (push) Failing after 13s

This commit is contained in:
2026-02-04 19:01:27 +00:00
parent 1b7705cf1a
commit 6dfa82e092

View File

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