Add gitlab-ci.yml file for an initial CI setup

This commit is contained in:
erciccione 2019-12-21 17:00:48 +01:00
parent 98dd202081
commit 060927afd1
No known key found for this signature in database
GPG key ID: 762AF8C608E56CDF

14
gitlab-ci.yml Normal file
View file

@ -0,0 +1,14 @@
image: ruby:2.5
stages:
- build
before_script:
- gem install bundler
build_site:
stage: build
only:
- master
script:
- bundle install
- bundle exec jekyll build