From 53dfd70fc89240eb71002d59827388b1e5365fae Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 18:00:27 +0000 Subject: [PATCH] Fix CI workflow: cd to app/ directory for pip install and tests --- .gitea/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4921b55..d359521 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,8 +17,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e ".[dev]" + cd app && pip install -e ".[dev]" - name: Run tests - run: pytest tests/ -v --cov=src --cov-report=term-missing + run: | + cd app && pytest tests/ -v --cov=src --cov-report=term-missing - name: Check linting - run: pip install ruff && ruff check . + run: | + pip install ruff + cd app && ruff check .