shlax/.gitlab-ci.yml
2020-01-26 20:52:55 +01:00

25 lines
405 B
YAML

qa:
stage: test
image: yourlabs/python
script: flake8 podctl
test:
stage: test
image: yourlabs/python
script: pip install -e . && py.test -v tests
build:
stage: test
image: yourlabs/podctl
script: pip install . && CACHE_DIR=$(pwd)/.cache podctl build
cache:
paths:
- .cache
key: cache
pypi:
stage: deploy
image: yourlabs/python
script: pypi-release
only: [tags]