diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4a2d4dc832f3b5e309579191b70eea93a21d5c31..24070e61c474ddb13b2b6b8dbe06f350ff097988 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,18 @@
 stages:
   - lint
+  - test
 
 lint:
   stage: lint
   image: python:3.10-alpine
   before_script: pip install black
   script: black --check .
+
+test:
+  stage: test
+  image: python:3.10-alpine
+  before_script: 
+    - pip install poetry
+    - poetry install
+  script:
+    - poetry run python test/test.py