norduniclient/.gitlab-ci.yml
Benedith Mulongo 615835d57d
Some checks are pending
Python CI / test (push) Waiting to run
Improve norduniclient from nordunet
2024-10-10 16:37:08 +02:00

34 lines
399 B
YAML

---
stages:
- test
- deploy
image: python:3
variables:
NEO4J_AUTH: neo4j/testing
services:
- neo4j:4.4
before_script:
- python -V
test:
stage: test
tags:
- docker
script:
- python setup.py testing
- python setup.py test
deploy:
stage: deploy
only:
- tags
script:
- pip install -U twine build
- python -m build
- twine upload dist/* --verbose