Update .gitea/workflows/ci.yml
Some checks failed
CI / test (push) Failing after 13s

This commit is contained in:
2026-02-14 09:40:07 +01:00
parent 6a0e88b201
commit 40768f7c2e

View File

@@ -15,11 +15,16 @@ jobs:
with:
python-version: "3.11"
- name: Install deps
- name: Install tooling
run: |
python -m pip install -U pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install pytest
- name: Install project (if pyproject exists)
run: |
if [ -f pyproject.toml ]; then
pip install -e .
fi
- name: Lint (ruff)
run: ruff check .