From 5a754ba6a9f65c240351f1bda09e5a8f5e45c3f5 Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Wed, 1 Nov 2023 17:13:14 +0000 Subject: [PATCH] Removed doc building from ci (this never worked), updated mypy and ruff check --- .gitlab-ci.yml | 32 +++----------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e221846..bc36644 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,37 +3,11 @@ image: python:3-alpine mypy: stage: test script: - - pip install mypy --quiet - - pip install . --quiet + - pip install mypy --quiet - mypy syng --strict ruff: stage: test script: - - pip install ruff --quiet - - pip install . --quiet - - ruff syng - -test: - stage: test - script: - - pip install -U sphinx - - pip install . --quiet - - sphinx-build -b html docs/source docs/build - only: - - branches - except: - - main - - -pages: - stage: deploy - script: - - pip install -U sphinx - - pip install . --quiet - - sphinx-build -b html docs/source docs/build - artifacts: - paths: - - docs/build - only: - - main + - pip install ruff --quiet + - ruff syng \ No newline at end of file