diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ddf9f78..c766548 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -24,6 +24,8 @@ jobs: - name: Python sanity check run: | python3 --version + python3 -m venv .venv + . .venv/bin/activate pip install --no-cache-dir ruff ruff check . || true