diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..b7775a4450a2798d70c490ff7f489fefe2b94a36 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,29 @@ +image: docker.km3net.de/base/python:3 + +stages: + - install + - test + - doc + +before_script: + - pip install cookiecutter + - cookiecutter --no-input . + - cd awesome + +install-py3.5: + image: docker.km3net.de/base/python:3.5 + stage: install + script: + - make install + +install-py3.6: + image: docker.km3net.de/base/python:3.6 + stage: install + script: + - make install + +install-py3.7: + image: docker.km3net.de/base/python:3.7 + stage: install + script: + - make install