Fix CI: use working-directory: app
Some checks failed
CI / test (push) Failing after 6s

This commit is contained in:
2026-02-04 18:57:54 +00:00
parent 180cacec79
commit 02e93f863a

View File

@@ -9,6 +9,7 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
working-directory: app
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
@@ -17,7 +18,6 @@ jobs:
- name: Run tests and linting - name: Run tests and linting
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
cd app
pip install -e ".[dev]" pip install -e ".[dev]"
python -m pytest tests/ -v --cov=src --cov-report=term-missing python -m pytest tests/ -v --cov=src --cov-report=term-missing
pip install ruff pip install ruff