diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9476671..a5fe2f7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,8 +14,10 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install and test + - name: Run tests and linting run: | - cd app + python -m pip install --upgrade pip pip install -e ".[dev]" - pytest tests/ -v + python -m pytest tests/ -v --cov=src --cov-report=term-missing + pip install ruff + ruff check src/