fix: Remove unnecessary cd command - CI runs from repo root
Some checks failed
CI / test (push) Failing after 4m45s

This commit is contained in:
2026-02-05 22:39:44 +00:00
parent b2888c08f4
commit ea3bc792ff

View File

@@ -24,17 +24,12 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
cd local-llm-prompt-manager
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install -r requirements.txt python -m pip install -r requirements.txt
python -m pip install pytest pytest-cov ruff python -m pip install pytest pytest-cov ruff
- name: Run tests - name: Run tests
run: | run: python -m pytest tests/ -v --tb=short
cd local-llm-prompt-manager
python -m pytest tests/ -v --tb=short
- name: Run linting - name: Run linting
run: | run: python -m ruff check src/
cd local-llm-prompt-manager
python -m ruff check src/