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