CI: Add py3.{9,10}
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
parent
f677633c69
commit
0e19a1cf09
1 changed files with 26 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue