image: python:3.13 | |
stages: | |
- test | |
- build | |
test: | |
stage: test | |
script: | |
- pip install -e . | |
- pip install pytest | |
- pytest tests/ | |
build: | |
stage: build | |
script: | |
- pip install build twine | |
- python -m build | |
- python -m twine check dist/* | |
artifacts: | |
paths: | |
- dist/ |