Fix CI workflow - remove working-directory, fix dependencies
Some checks failed
CI / test (push) Failing after 7s

This commit is contained in:
2026-01-31 01:59:58 +00:00
parent c3ffbdbf7b
commit e50f4756a6

View File

@@ -9,9 +9,6 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults:
run:
working-directory: app
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -23,10 +20,11 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -e ".[dev]" pip install pytest ruff
pip install -e .
- name: Run tests - name: Run tests
run: pytest tests/ -v --tb=short run: pytest tests/ -v --tb=short
- name: Check code formatting - name: Check code formatting
run: ruff check env_pro/ run: ruff check .