fix: update workflow to cd into app directory
Some checks failed
CI / test (push) Failing after 5s

This commit is contained in:
2026-01-31 01:48:07 +00:00
parent ee37608bfc
commit 7b949db9c3

View File

@@ -20,11 +20,16 @@ jobs:
- name: Install dependencies
run: |
cd app
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short
run: |
cd app
pytest tests/ -v --tb=short
- name: Check code formatting
run: ruff check env_pro/
run: |
cd app
ruff check env_pro/