From ab83ef900ef41e6b46589dc4bc247a04670bcdfb Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Thu, 26 Sep 2024 16:49:17 +0000 Subject: [PATCH] Datei .gitlab-ci.yml aktualisieren --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a3e397a..5b72c8c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,11 +3,12 @@ image: python:3-alpine mypy: stage: test script: - - pip install . --quiet + - pip install poetry + - poetry install - mypy syng --strict ruff: stage: test script: - - pip install ruff --quiet + - pip install ruff --quiet - ruff check syng