From 33de57ebd84990fbf47392680a54e20404f23d9c Mon Sep 17 00:00:00 2001
From: Valentin Emiya <23557104+valentin-emiya@users.noreply.github.com>
Date: Mon, 15 Jul 2024 11:04:14 +0200
Subject: [PATCH] add test for 3.7 and 3.8

---
 .gitlab-ci.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 26963b9..6e78291 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -41,6 +41,32 @@ stages:
 variables:
   PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
 
+install_and_test_37:
+  image: python:3.7
+  stage: test
+  script:
+    - pip3 install -e . --no-deps
+    - python3 -m pytest
+  artifacts:
+    when: always
+    untracked: true
+    paths:
+      - build
+    expire_in: 8d
+
+install_and_test_38:
+  image: python:3.8
+  stage: test
+  script:
+    - pip3 install -e . --no-deps
+    - python3 -m pytest
+  artifacts:
+    when: always
+    untracked: true
+    paths:
+      - build
+    expire_in: 8d
+
 install_and_test_39:
   image: python:3.9
   stage: test
-- 
GitLab