diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f44e778..6ba3854 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,20 +9,13 @@ on: jobs: test: runs-on: ubuntu-latest - working-directory: app steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install dependencies + - name: Install and test run: | - python -m pip install --upgrade pip + cd app pip install -e ".[dev]" - - name: Run tests - run: | - python -m pytest tests/ -v --tb=short - - name: Check linting - run: | - pip install ruff - ruff check src/ + pytest tests/