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
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/