]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
.gitlab-ci.manager.yml: lint and format added
authorAleš Mrázek <ales.mrazek@nic.cz>
Fri, 11 Oct 2024 09:17:12 +0000 (11:17 +0200)
committerAleš Mrázek <ales.mrazek@nic.cz>
Thu, 17 Oct 2024 12:39:47 +0000 (14:39 +0200)
.gitlab-ci.manager.yml

index f4f8656540f7769302d670fa153eb6728423d24a..48f6d470c03d2082c3233c339897a234827bdb0b 100644 (file)
@@ -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