1
0
mirror of https://gitlab.com/MisterBiggs/aero-astro-calc.git synced 2025-08-15 18:01:25 +00:00
Files
aero_astro_calc
.gitignore
.gitlab-ci.yml
LICENSE
PlaneStress.png
README.md
requirements.txt
setup.py
Aero-Astro-Calc/.gitlab-ci.yml
2020-01-20 21:32:52 +00:00

33 lines
575 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 .
# https://github.com/python-gitlab/python-gitlab/blob/master/.gitlab-ci.yml used for reference
deploy:
stage: deploy
image: python:3.8
before_script:
- python -V # Print out python version for debugging
- pip install -U setuptools wheel twine
script:
- python setup.py bdist_wheel
- twine upload --skip-existing -u __token__ -p $PYPI_TOKEN dist dist/*
only:
- tags