diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..34d29ea10a9063f317bc69dec078dc66a52f2a64
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,20 @@
+stages:
+  - test
+  - build
+
+
+.test_python:
+  stage: test
+  before_script:
+    - pip install --upgrade Cython setuptools pip
+    - git clone https://github.com/smok-serwis/minijson.git
+    - cd minijson
+    - python setup.py install
+    - cd ..
+    - pip install -r requirements.txt
+  script:
+    - python setup.py test
+
+test_python38:
+  extends: .test_python
+  image: python:3.8
\ No newline at end of file