diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9dbdcbb670a8c703b9640357a9a86553c47773dd..f5528f44d28393cc136c5c780abdd7d5224971d8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,6 +42,7 @@ before_script:
 stages:          # List of stages for jobs, and their order of execution
   - build
   - test
+  - pages
   - deploy
 
 
@@ -76,6 +77,18 @@ unit-test-job:   # This job runs in the test stage.
        - tests/**/*
       when: always
 
+pages-job:
+  stage: pages
+  script:
+  - pip install -U sphinx
+  - sphinx-build -b html . public
+  artifacts:
+    paths:
+    - public
+  #only:
+  #- master
+
+
 deploy-job:      # This job runs in the deploy stage.
   stage: deploy  # It only runs when *both* jobs in the test stage complete successfully.
   environment: production