From 02e93f863a4762896dfa5f422c99233acf2564a5 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 18:57:54 +0000 Subject: [PATCH] Fix CI: use working-directory: app --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 305e8b2..1f881c0 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,6 +9,7 @@ on: jobs: test: runs-on: ubuntu-latest + working-directory: app steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -17,7 +18,6 @@ jobs: - name: Run tests and linting run: | python -m pip install --upgrade pip - cd app pip install -e ".[dev]" python -m pytest tests/ -v --cov=src --cov-report=term-missing pip install ruff