Update .gitlab-ci.yml file

This commit is contained in:
Simon Little 2026-04-03 23:56:54 +00:00
parent 7e46f89950
commit 11571f90ec

View file

@ -12,6 +12,7 @@ variables:
stages: stages:
- test - test
- publish
test: test:
# image: python313 # image: python313
@ -23,5 +24,9 @@ test:
- uv sync --frozen - uv sync --frozen
- source .venv/bin/activate - source .venv/bin/activate
- python unittests.py - python unittests.py
pubish:
image: ghcr.io/astral-sh/uv:$UV_VERSION-python$PYTHON_VERSION-$BASE_LAYER
script:
- uv build
- uv publish
# Test