Il suffit de placer un fichier .gitlab-ci.yml à la racine du projet correctement configuré.
Exemple de fichier pour les tests d'une application Django:
image: python:latest cache: paths: - ~/.cache/pip/ before_script: - python -V # Print out python version for debugging - pip install -r requirements.txt -r requirements-dev.txt test: script: - make flake - make coverage
git push -o ci.skip