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