diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..cf0bb3beedd2edf7a6cee247c9ab1e21aac2c723 --- /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