mirror of
https://gitlab.com/MisterBiggs/aero-astro-calc.git
synced 2025-06-15 14:46:49 +00:00
25 lines
432 B
YAML
25 lines
432 B
YAML
stages:
|
|
- deploy
|
|
- test
|
|
|
|
black:
|
|
stage: test
|
|
image: python:3.8
|
|
|
|
before_script:
|
|
- python -V
|
|
- pip install -U black==19.10b0
|
|
|
|
script:
|
|
- black --check .
|
|
|
|
pypi:
|
|
image: python:3.8
|
|
stage: deploy
|
|
script:
|
|
- apt-get update -qy
|
|
- apt-get install -y ruby-dev
|
|
- gem install dpl
|
|
- python setup.py sdist
|
|
- dpl --provider=pypi --user=$TWINE_USERNAME --password=$TWINE_PASSWORD --skip_existing=true
|