From 6ca433b26700023107b87c91cb4841b5dae2ba4d Mon Sep 17 00:00:00 2001
From: JuniorJPDJ <git@juniorjpdj.pl>
Date: Tue, 19 Jul 2022 20:37:38 +0000
Subject: [PATCH] feat(ci): test on every python version

---
 .gitlab-ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 053a30d..e4967f0 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,13 +15,16 @@ cache:
 
 test:
   stage: test
-  image: python:3.6
+  image: python:$PY_VER
   before_script:
     - pip install .[test]
   script:
     - pytest
   tags:
     - docker
+  parallel:
+    matrix:
+      - PY_VER: ["3.6", "3.7", "3.8", "3.9", "3.10"]
 
 build-linux:
   stage: build
-- 
GitLab