diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index df364c3f11be7ffa004c7c75418b5a6ecefdc108..ad8ee64072b6850235a9fffdd300dfecfc80c16b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,3 +1,16 @@
+run_tests:
+  image: "python:$VERSION"
+  script:
+    - pip install -e .[dev]
+    - export PYTHONPATH="$(pwd)"
+    - coverage run --source . run_tests.py
+    - coverage report -m
+  parallel:
+    matrix:
+      - VERSION: ['3.8', '3.11']
+
+
+
 upload:
   stage: deploy
   rules: