From 40768f7c2e9e27f7a28d03663ad2eff93d34165e Mon Sep 17 00:00:00 2001 From: Hubert Cornet Date: Sat, 14 Feb 2026 09:40:07 +0100 Subject: [PATCH] Update .gitea/workflows/ci.yml --- .gitea/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ef4ef3b..ab87b7d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 .