From 17fef78672de4e9b6a5f1ca6f034644d191decdd Mon Sep 17 00:00:00 2001 From: AramJonghu Date: Sat, 16 May 2026 00:06:20 +0200 Subject: [PATCH] fix python venv in ci --- .gitea/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) 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