1diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
2new file mode 100644
3index 0000000000000000000000000000000000000000..b0e8b9423a26d6df5d3d8fc07c839c237d730502
4--- /dev/null
5+++ b/.gitlab-ci.yml
6@@ -0,0 +1,32 @@
7+# This file is a template, and might need editing before it works on your project.
8+# Template project: https://gitlab.com/pages/jekyll
9+# Docs: https://docs.gitlab.com/ce/pages/
10+image: ruby:2.6
11+
12+variables:
13+ JEKYLL_ENV: production
14+ LC_ALL: C.UTF-8
15+
16+before_script:
17+ - gem install bundler
18+ - bundle install
19+
20+test:
21+ stage: test
22+ script:
23+ - bundle exec jekyll build -d test
24+ artifacts:
25+ paths:
26+ - test
27+ except:
28+ - master
29+
30+pages:
31+ stage: deploy
32+ script:
33+ - bundle exec jekyll build -d public
34+ artifacts:
35+ paths:
36+ - public
37+ only:
38+ - master