From e3b7879eb2a386f8fe178ad865730dd87b579626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janek=20Hlavat=C3=BD?= Date: Wed, 25 Mar 2026 19:40:34 +0100 Subject: [PATCH] We are no longer on gitlab --- .gitlab-ci.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 67afcc1..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,40 +0,0 @@ -image: python:3.12-slim - -cache: - paths: - - .cache/pip - - venv/ - -variables: - PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" - -before_script: - - python -V - - python -m venv venv - - source venv/bin/activate - - pip install --upgrade pip - - pip install ruff mypy pytest - - pip install . - -stages: - - lint - - test - -run_ruff: - stage: lint - script: - - ruff check . - -run_mypy: - stage: lint - script: - - mypy src - -run_pytest: - stage: test - script: - - pytest --junit-xml=report.xml - artifacts: - when: always - reports: - junit: report.xml