From e3a2a2068a67ff591f2741247876b98851f3a582 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 9 Jun 2025 10:46:28 +0200 Subject: [PATCH] chore: Remove woodpecker files --- .woodpecker/lint.yml | 16 ---------------- .woodpecker/static_analysis.yml | 9 --------- .woodpecker/test.yml | 10 ---------- 3 files changed, 35 deletions(-) delete mode 100644 .woodpecker/lint.yml delete mode 100644 .woodpecker/static_analysis.yml delete mode 100644 .woodpecker/test.yml diff --git a/.woodpecker/lint.yml b/.woodpecker/lint.yml deleted file mode 100644 index eb67dbe..0000000 --- a/.woodpecker/lint.yml +++ /dev/null @@ -1,16 +0,0 @@ -pipeline: - lint_ruff: - image: python - commands: - - pip install ruff - - python --version && poetry --version && ruff --version - - echo "----------------- running ruff lint ------------------" - - ruff check . - - lint_black: - image: python - commands: - - pip install black - - python --version && poetry --version && black --version - - echo "----------------- running black lint ----------------" - - black --check . diff --git a/.woodpecker/static_analysis.yml b/.woodpecker/static_analysis.yml deleted file mode 100644 index 786af22..0000000 --- a/.woodpecker/static_analysis.yml +++ /dev/null @@ -1,9 +0,0 @@ -pipeline: - pyright: - image: nikolaik/python-nodejs - commands: - - npm install --global pyright - - poetry install - - python --version && poetry --version && pyright --version - - echo "------------- running pyright typecheck -------------" - - poetry run pyright diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml deleted file mode 100644 index 44e264d..0000000 --- a/.woodpecker/test.yml +++ /dev/null @@ -1,10 +0,0 @@ -branches: master - -pipeline: - pytest: - image: ghcr.io/withlogicco/poetry:1.5.1 - commands: - - poetry install - - python --version && poetry --version - - echo "------------- running pytest -------------" - - poetry run pytest