From 4c6e50bdca6bb8dadbdcf3e84de5e5670acbfb53 Mon Sep 17 00:00:00 2001 From: gpapathan87 Date: Fri, 27 Jun 2025 14:31:22 +0300 Subject: [PATCH] Add Gitlab CI pipeline --- .gitlab-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cf0bb3b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: python:3.12 + +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 . + +test: + stage: test + script: + - uv run tox -- GitLab