From 4d6aa76b3a0cbcd20783ae7b1ee3c65853d36b79 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ale=C5=A1=20Mr=C3=A1zek?= Date: Fri, 11 Oct 2024 11:17:12 +0200 Subject: [PATCH] .gitlab-ci.manager.yml: lint and format added --- .gitlab-ci.manager.yml | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.manager.yml b/.gitlab-ci.manager.yml index f4f865654..48f6d470c 100644 --- a/.gitlab-ci.manager.yml +++ b/.gitlab-ci.manager.yml @@ -11,21 +11,37 @@ default: - linux - amd64 -examples:py3.13: +examples:py3.12: stage: check script: - poetry install --all-extras --only main,dev - poe examples variables: - PYTHON_INTERPRETER: python3.13 + PYTHON_INTERPRETER: python3.12 -lint:py3.13: +check:py3.12: stage: check script: - poetry install --all-extras --only main,dev,lint - poe check variables: - PYTHON_INTERPRETER: python3.13 + PYTHON_INTERPRETER: python3.12 + +format:py3.12: + stage: check + script: + - poetry install --all-extras --only main,dev,lint + - poe format + variables: + PYTHON_INTERPRETER: python3.12 + +lint:py3.12: + stage: check + script: + - poetry install --all-extras --only main,dev,lint + - poe lint + variables: + PYTHON_INTERPRETER: python3.12 .unit: &unit stage: check -- 2.47.2