From 0e19a1cf0930be15f9c2f6ef7122ef0ac13e0e03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 15 Dec 2021 01:23:33 +0100 Subject: [PATCH] CI: Add py3.{9,10} MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f738179..a47d752 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,12 @@ stages: .python-3.8: image: python:3.8 +.python-3.9: + image: python:3.9 + +.python-3.10: + image: python:3.10 + .pylint: stage: lint script: @@ -34,6 +40,16 @@ lint-3.8-pylint: - .python-3.8 - .pylint +lint-3.9-pylint: + extends: + - .python-3.9 + - .pylint + +lint-3.10-pylint: + extends: + - .python-3.10 + - .pylint + lint-3.7-mypy: extends: - .python-3.7 @@ -43,3 +59,13 @@ lint-3.8-mypy: extends: - .python-3.8 - .mypy + +lint-3.9-mypy: + extends: + - .python-3.9 + - .mypy + +lint-3.10-mypy: + extends: + - .python-3.10 + - .mypy