Best read in the Cookbook ! also Travis CI, code coverage, testing with Prove. Gitlab CI is part of Gitlab and is available on Gitlab.com, for public and private repositories. Let’s see straight away a simple .gitlab-ci.yml: image: daewok/lisp-devel before_script: - apt-get update -qy - apt-get install -y git-core - git clone https://github.com/foo/bar ~/quicklisp/local-projects/ test: script: - make test Gitlab CI is based on Docker. With image we tell it to use the daewok/lisp-devel one.