feat: Add option to create isolated virtual environment in Python setup action
All checks were successful
Run Tests / Lint (push) Successful in 36s
Run Tests / Unit Tests (push) Successful in 42s
Run Tests / E2E Tests (push) Successful in 12m58s

This commit is contained in:
2025-10-28 07:56:24 +01:00
parent 89a4f663b5
commit a772960390
2 changed files with 7 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ jobs:
with:
use-system-python: 'true'
run-db-setup: 'false'
create-venv: 'true'
- name: Run lint checks
run: ruff check .
@@ -65,6 +66,7 @@ jobs:
uses: ./.gitea/actions/setup-python-env
with:
use-system-python: 'true'
create-venv: 'true'
- name: Run unit tests
run: pytest tests/unit