From ea3bc792ffe1f3056caa73607a107d3f6dac1265 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 22:39:44 +0000 Subject: [PATCH] fix: Remove unnecessary cd command - CI runs from repo root --- local-llm-prompt-manager/.gitea/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/local-llm-prompt-manager/.gitea/workflows/ci.yml b/local-llm-prompt-manager/.gitea/workflows/ci.yml index 3dfe207..b641598 100644 --- a/local-llm-prompt-manager/.gitea/workflows/ci.yml +++ b/local-llm-prompt-manager/.gitea/workflows/ci.yml @@ -24,17 +24,12 @@ jobs: - name: Install dependencies run: | - cd local-llm-prompt-manager python -m pip install --upgrade pip python -m pip install -r requirements.txt python -m pip install pytest pytest-cov ruff - name: Run tests - run: | - cd local-llm-prompt-manager - python -m pytest tests/ -v --tb=short + run: python -m pytest tests/ -v --tb=short - name: Run linting - run: | - cd local-llm-prompt-manager - python -m ruff check src/ + run: python -m ruff check src/