CI: Add py3.{9,10}

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2021-12-15 01:13:45 +01:00
parent cd5a09d2f0
commit 272ea80581
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2

View file

@ -1,5 +1,7 @@
---
stages:
- lint
- lint
.python-3.7:
image: python:3.7
@ -7,6 +9,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:
@ -43,3 +51,23 @@ lint-3.8-mypy:
extends:
- .python-3.8
- .mypy
lint-3.9-pylint:
extends:
- .python-3.9
- .pylint
lint-3.9-mypy:
extends:
- .python-3.9
- .mypy
lint-3.10-pylint:
extends:
- .python-3.10
- .pylint
lint-3.10-mypy:
extends:
- .python-3.10
- .mypy