Continuous Integration and delivery on Gitlab CI, testing locally with Docker

from blog Lisp journey, | ↗ original
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...