From ed1acfe59e3f6198718ea048c51e4e9c0ceb9491 Mon Sep 17 00:00:00 2001 From: gpapathan87 Date: Fri, 27 Jun 2025 14:34:29 +0300 Subject: [PATCH] Add Gitlab CI pipeline --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cf0bb3b..9f5d46c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,12 +4,10 @@ stages: - test before_script: - # Upgrade pip just in case - python -m pip install --upgrade pip - # Install uv - pip install uv - # Install your project in editable mode - - uv pip install -e . + # Install dependencies system-wide (no venv) + - uv pip install -e . --system test: stage: test -- GitLab