Commit 4c6e50bd authored by George Papathanail's avatar George Papathanail
Browse files

Add Gitlab CI pipeline

parent 26c8c0ea
Loading
Loading
Loading
Loading
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