blob: 20d1221a2ca4b3090afbeaa2471ab5efe8e5e84e [file] [log] [blame]
Marc Kupietz870039c2025-05-04 13:49:56 +02001image: python:3.13
2
3stages:
4 - test
5 - build
6
7test:
8 stage: test
9 script:
10 - pip install -e .
11 - pip install pytest
12 - pytest tests/
13
14build:
15 stage: build
16 script:
17 - pip install build twine
18 - python -m build
19 - python -m twine check dist/*
20 artifacts:
21 paths:
22 - dist/