allianceauth/.gitlab-ci.yml
2020-02-07 04:49:17 +00:00

42 lines
533 B
YAML

stages:
- "test"
- deploy
before_script:
- python -V
- pip install wheel tox
test-3.5:
image: python:3.5-buster
script:
- tox -e py35
test-3.6:
image: python:3.6-buster
script:
- tox -e py36
test-3.7:
image: python:3.7-buster
script:
- tox -e py37
test-3.8:
image: python:3.8-buster
script:
- tox -e py38
deploy_production:
stage: deploy
image: python:3.6-stretch
before_script:
- pip install twine
script:
- python setup.py sdist
- twine upload dist/*
only:
- tags