--- default: image: python:3.7 include: - project: "open-source/gitlab-ci-templates" ref: "branch/default" file: - "templates/no-duplicated-ci-pipelines.yml" # use workflow to avoid duplicated pipelines - "templates/lint/flake8.yml" # will do the equivalent of 'tox -e flake8' - "templates/lint/yamllint.yml" # will do the equivalent of 'tox -e yamllint' - "templates/tests/py27.yml" # will do the equivalent of 'tox -e py27' - "templates/tests/py3.yml" # will do the equivalent of 'tox -e py3' - "templates/create-release-on-heptapod.yml" # this will create a release on heptapod - "templates/upload-to-pypi.yml" # on a new mercurial tag (expected to be done with release-new), will push a release on pypi - ".gitlab-ci-extended.yml" stages: - lint - tests - release - publish