Skip to content
Snippets Groups Projects

Add gitlab CI configuration.

1 file
+ 25
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 25
0
image: clarinpl/python:3.8
stages:
- test
- deploy
unittests:
stage: test
script:
- python setup.py test
pypi_deploy:
before_script:
- pip install twine
only:
- master
stage: deploy
when: on_success
script:
- python setup.py sdist bdist_wheel
- python -m twine upload
--repository-url https://pypi.clarin-pl.eu/
-u $PIPY_USER
-p $PIPY_PASS
dist/COMBO*.whl
Loading