Loading .gitlab-ci.yml 0 → 100644 +17 −0 Original line number Diff line number Diff line 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 Loading
.gitlab-ci.yml 0 → 100644 +17 −0 Original line number Diff line number Diff line 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